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

47 lines
849 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:
paths-ignore:
- '**.md'
jobs:
test-containerized:
runs-on: ubuntu-latest
steps:
-
name: Checkout
2020-11-08 02:54:03 +01:00
uses: actions/checkout@v2
2020-10-25 03:21:46 +01:00
-
name: Validate
run: docker buildx bake validate
-
name: Test
run: docker buildx bake test
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: Install
run: yarn install
-
name: Test
run: yarn run test
-
name: Upload coverage
2020-11-08 02:54:03 +01:00
uses: codecov/codecov-action@v1
2020-10-25 03:21:46 +01:00
if: success()
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/clover.xml