2020-08-21 20:45:16 +08:00
|
|
|
name: test
|
|
|
|
|
2023-09-05 17:00:45 +08:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-08-21 20:45:16 +08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-04-01 00:34:44 +08:00
|
|
|
- 'master'
|
|
|
|
- 'releases/v*'
|
2020-08-21 20:45:16 +08:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2021-04-01 00:34:44 +08:00
|
|
|
runs-on: ubuntu-latest
|
2020-08-21 20:45:16 +08:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2023-09-05 13:39:46 +08:00
|
|
|
uses: actions/checkout@v4
|
2020-08-21 20:45:16 +08:00
|
|
|
-
|
|
|
|
name: Test
|
2023-09-13 13:29:30 +08:00
|
|
|
uses: docker/bake-action@v4
|
2021-04-01 00:34:44 +08:00
|
|
|
with:
|
|
|
|
targets: test
|
2020-08-21 20:45:16 +08:00
|
|
|
-
|
|
|
|
name: Upload coverage
|
2024-02-23 16:00:01 +08:00
|
|
|
uses: codecov/codecov-action@v4
|
2020-08-21 20:45:16 +08:00
|
|
|
with:
|
|
|
|
file: ./coverage/clover.xml
|
2024-02-23 16:00:01 +08:00
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|