mirror of
https://github.com/docker/metadata-action.git
synced 2024-11-05 11:45:40 +01:00
2f83320d17
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
39 lines
672 B
YAML
39 lines
672 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
- 'releases/v*'
|
|
paths-ignore:
|
|
- '**.md'
|
|
pull_request:
|
|
branches:
|
|
- 'master'
|
|
- 'releases/v*'
|
|
paths-ignore:
|
|
- '**.md'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: Validate
|
|
uses: docker/bake-action@v1
|
|
with:
|
|
targets: validate
|
|
-
|
|
name: Test
|
|
uses: docker/bake-action@v1
|
|
with:
|
|
targets: test
|
|
-
|
|
name: Upload coverage
|
|
uses: codecov/codecov-action@v1
|
|
with:
|
|
file: ./coverage/clover.xml
|