2020-08-18 22:40:31 +07:00
|
|
|
name: test
|
|
|
|
|
2023-09-05 16:09:23 +07:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-08-18 22:40:31 +07:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-04-02 06:19:14 +07:00
|
|
|
- 'master'
|
|
|
|
- 'releases/v*'
|
2020-08-18 22:40:31 +07:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2023-09-05 11:34:21 +07:00
|
|
|
uses: actions/checkout@v4
|
2021-04-23 23:14:38 +07:00
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
uses: ./
|
2020-08-18 22:40:31 +07:00
|
|
|
-
|
|
|
|
name: Test
|
2024-06-18 11:09:56 +07:00
|
|
|
uses: docker/bake-action@v5
|
2021-04-02 06:19:14 +07:00
|
|
|
with:
|
|
|
|
targets: test
|
2020-08-27 22:41:10 +07:00
|
|
|
-
|
|
|
|
name: Upload coverage
|
2024-11-15 11:48:17 +07:00
|
|
|
uses: codecov/codecov-action@v5
|
2020-08-27 22:41:10 +07:00
|
|
|
with:
|
2024-12-12 21:02:42 +07:00
|
|
|
files: ./coverage/clover.xml
|
2024-02-23 15:15:27 +07:00
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|