Skip to content

Workflow file for this run

name: Test the builds
on:
push:
branches: [acton]
jobs:
build:
strategy:
matrix:
env:
BUILD_TYPE: [Debug, Release]

Check failure on line 13 in .github/workflows/test-builds.yml

View workflow run for this annotation

GitHub Actions / Test the builds

Invalid workflow file

The workflow is not valid. .github/workflows/test-builds.yml (Line: 13, Col: 11): A mapping was not expected
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install ICU
run: |
# sudo apt-get update -y
sudo apt-get install -y libicu-dev libicu70
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -C ${{env.BUILD_TYPE}}