Skip to content

Workflow file fixed

Workflow file fixed #5

name: Ubuntu 24.04 build and tests
on:
# allow to be triggered on github webpage manually
workflow_dispatch:
# run whenever someone pushes data
# as we do not have much development, this will not cause much traffic/build times
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v4
- name: build
working-directory: build/cmake
run: ./build.sh 2 release skip-test
- name: test
working-directory: build/cmake
run: ./run_tests.sh