Skip to content

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
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
coverage:
uses: ./.github/workflows/coverage.yml

Check failure on line 22 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:235b31982c4b6a39dfaeecff18f5a73fbe9e50ba) : `workflow_cal` is not a valid event name
if: ${{ github.event_name == 'pull_request' }}