mirror of
https://github.com/docker/build-push-action.git
synced 2025-06-30 04:54:15 +00:00
Add setup-buildx action (#71)
This commit is contained in:
parent
836357fa9e
commit
64ca6397e9
20 changed files with 11923 additions and 0 deletions
32
.github/workflows/setup-buildx-test.yml
vendored
Normal file
32
.github/workflows/setup-buildx-test.yml
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
name: setup-buildx-test
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- .github/workflows/setup-buildx-test.yml
|
||||
- setup-buildx/**
|
||||
pull_request:
|
||||
paths:
|
||||
- .github/workflows/setup-buildx-test.yml
|
||||
- setup-buildx/**
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2.3.1
|
||||
-
|
||||
name: Install
|
||||
run: yarn --cwd ./setup-buildx/ install
|
||||
-
|
||||
name: Test
|
||||
run: yarn --cwd ./setup-buildx/ run test
|
||||
# -
|
||||
# name: Upload coverage
|
||||
# uses: codecov/codecov-action@v1.0.7
|
||||
# if: success()
|
||||
# with:
|
||||
# token: ${{ secrets.CODECOV_TOKEN }}
|
||||
# file: ./coverage/clover.xml
|
Loading…
Add table
Add a link
Reference in a new issue