Skip to content

Use apt-get instead of apt. #5

Use apt-get instead of apt.

Use apt-get instead of apt. #5

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: |
sudo apt-get update
sudo apt-get 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"