Skip to content

Use straight line to separate lines. #3

Use straight line to separate lines.

Use straight line to separate lines. #3

Workflow file for this run

name: CMake
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install third-party libraries
run: |
apt update
apt install -y libboost-test-dev libtorch-dev --no-install-recommends
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build
- name: Build
run: cmake --build ${{github.workspace}}/build
- name: Test
working-directory: ${{github.workspace}}/build
run: make test ARGS=--verbose"