mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
36c90bc3ab
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
32 lines
704 B
YAML
32 lines
704 B
YAML
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
|