Skip to content

ci: First workflow

ci: First workflow #1

name: Build on Ubuntu 22.04 with GCC (c++11)

Check failure on line 1 in .github/workflows/ubuntu_22_04-gcc-c++11.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ubuntu_22_04-gcc-c++11.yml

Invalid workflow file

`env` is not a valid event name
on:
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Debug
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build Examples
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target all_examples
- name: Build Tests
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target all_tests
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -C ${{env.BUILD_TYPE}}