Skip to content

Update badge layout #26

Update badge layout

Update badge layout #26

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
permissions:
contents: read # Required for actions/checkout
id-token: write # Required for codecov token authentication
actions: read # Required for artifact upload
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- uses: ./.github/actions/build
with:
build_type: Debug
- uses: ./.github/actions/coverage
- name: Upload to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: build/coverage.info
fail_ci_if_error: true