Skip to content

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
permissions:
contents: read
pull-requests: write
jobs:
ci:
name: ci
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install deps
run: sudo apt-get install lcov
- name: Run tests
run: |
cmake -Bbuild && cd build
cmake --build .
make test
- uses: actions/upload-artifact@master
with:
name: lcov-info-pr
path: build/coverage.info
coverage:
uses: ./.github/workflows/coverage.yml

Check failure on line 30 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci.yml" -> "./.github/workflows/coverage.yml" (source branch with sha:213cc5469db999cfa409f44c3b816075cffe4b5c) : You have an error in your yaml syntax on line 26
if: ${{ github.event_name == 'pull_request' }}