1
0
Fork 0
mirror of https://github.com/docker/login-action.git synced 2025-03-26 08:40:05 +01:00
login-action/.github/workflows/test.yml

29 lines
515 B
YAML
Raw Normal View History

2020-08-21 14:45:16 +02:00
name: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2020-08-21 14:45:16 +02:00
on:
push:
branches:
- 'master'
- 'releases/v*'
2020-08-21 14:45:16 +02:00
pull_request:
jobs:
test:
runs-on: ubuntu-latest
2020-08-21 14:45:16 +02:00
steps:
-
name: Test
uses: docker/bake-action@v6
with:
targets: test
2020-08-21 14:45:16 +02:00
-
name: Upload coverage
uses: codecov/codecov-action@v5
2020-08-21 14:45:16 +02:00
with:
files: ./coverage/clover.xml
token: ${{ secrets.CODECOV_TOKEN }}