metadata-action/.github/workflows/test.yml

32 lines
550 B
YAML
Raw Normal View History

2020-10-25 03:21:46 +01:00
name: test
on:
push:
branches:
- 'master'
- 'releases/v*'
paths-ignore:
- '**.md'
pull_request:
branches:
- 'master'
2020-10-25 03:21:46 +01:00
paths-ignore:
- '**.md'
jobs:
test:
2020-10-25 15:36:42 +01:00
runs-on: ubuntu-latest
2020-10-25 03:21:46 +01:00
steps:
-
name: Checkout
2020-11-08 02:54:03 +01:00
uses: actions/checkout@v2
2020-10-25 03:21:46 +01:00
-
name: Test
run: docker buildx bake test
2020-10-25 03:21:46 +01:00
-
name: Upload coverage
2020-11-08 02:54:03 +01:00
uses: codecov/codecov-action@v1
2020-10-25 03:21:46 +01:00
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/clover.xml