Skip to content

bump C++ to 23

bump C++ to 23 #283

Workflow file for this run

name: Coverage
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/setup-build
- run: |
sudo apt update && sudo apt -y install lcov
cargo make cov
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: build/tests/CMakeFiles/test_autd3.dir/coverage.info
fail_ci_if_error: true
disable_search: true