mirror of
https://github.com/docker/setup-buildx-action.git
synced 2025-04-02 01:36:35 +00:00
Bumps [docker/bake-action](https://github.com/docker/bake-action) from 1 to 1.4.0. - [Release notes](https://github.com/docker/bake-action/releases) - [Commits](https://github.com/docker/bake-action/compare/v1...v1.4.0) Signed-off-by: dependabot[bot] <support@github.com>
37 lines
672 B
YAML
37 lines
672 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
- 'releases/v*'
|
|
pull_request:
|
|
branches:
|
|
- 'master'
|
|
- 'releases/v*'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: Validate
|
|
uses: docker/bake-action@v1.4.0
|
|
with:
|
|
targets: validate
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: ./
|
|
-
|
|
name: Test
|
|
uses: docker/bake-action@v1.4.0
|
|
with:
|
|
targets: test
|
|
-
|
|
name: Upload coverage
|
|
uses: codecov/codecov-action@v1
|
|
with:
|
|
file: ./coverage/clover.xml
|