setup-qemu-action/.github/workflows/test.yml
Vedant Madane e06fb94911 docs: add multi-platform build example to README
Signed-off-by: Vedant Madane <vedant.madane@gmail.com>
2026-04-15 18:00:00 +00:00

33 lines
600 B
YAML

name: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- 'master'
- 'releases/v*'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v6
-
name: Test
uses: docker/bake-action@v6
with:
source: .
targets: test
-
name: Upload coverage
uses: codecov/codecov-action@v5
with:
files: ./coverage/clover.xml
token: ${{ secrets.CODECOV_TOKEN }}