Skip to content

Remove tex files from language statistics #30

Remove tex files from language statistics

Remove tex files from language statistics #30

name: CMake on a single platform
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Configure CMake
working-directory: ${{github.workspace}}/test/serial
run: cmake -B ${{github.workspace}}/test/serial/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
working-directory: ${{github.workspace}}/test/serial
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/test/serial/build --config ${{env.BUILD_TYPE}}
- name: Run tests
working-directory: ${{github.workspace}}/test/serial/build
run: |
for f in ./*.out
do
./$f
done