Skip to content

Experiment to see what prevents appveyor from building #133

Experiment to see what prevents appveyor from building

Experiment to see what prevents appveyor from building #133

Workflow file for this run

name: linux
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Prepare
run: cmake -B ${{github.workspace}}/build -DDEBUG=1 -DTESTS=1
- name: Build
# Build your program
run: cmake --build ${{github.workspace}}/build -j$(nproc)
- name: Test
# Run tests
run: ctest --test-dir ${{github.workspace}}/build -j$(nproc)