Skip to content

Cars Diamond

Cars Diamond #63

name: cars-exception
on: [pull_request, push, workflow_dispatch]
jobs:
cars-exception:
runs-on: ubuntu-latest
env:
path: build
steps:
- name: Check out code
uses: actions/checkout@master
- name: Create build directory
run: mkdir ${{ env.path }}
- name: Compile
working-directory: ${{ env.path }}
run: |
cmake ..
make
- name: Run tests
working-directory: ${{ env.path }}
run: |
chmod +x ../.github/workflows/check-exception.sh
../.github/workflows/check-exception.sh ../*.cpp ../*.hpp