Skip to content

finished. All tests ran successfully #10

finished. All tests ran successfully

finished. All tests ran successfully #10

Workflow file for this run

name: Ubuntu Linux Run Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
run: |
cmake ../src
make -j4
working-directory: build
- name: build_tests
run: |
cmake .
make -j4
working-directory: tests
- name: run_tests
run: |
sudo ./run_all_tests
working-directory: tests