ghaction-upx/.github/workflows/test.yml

34 lines
633 B
YAML
Raw Normal View History

2020-01-17 01:36:42 -07:00
name: test
2023-05-03 09:50:31 -06:00
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2020-01-17 01:36:42 -07:00
on:
push:
branches:
- 'master'
- 'releases/v*'
2020-05-23 17:14:30 -06:00
pull_request:
2023-01-29 07:24:04 -07:00
paths-ignore:
- '.github/upx-releases.json'
2020-01-17 01:36:42 -07:00
jobs:
test:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Test
uses: docker/bake-action@v5
with:
targets: test
2020-05-06 13:17:47 -06:00
-
name: Upload coverage
uses: codecov/codecov-action@v4
2020-05-06 13:17:47 -06:00
with:
file: ./coverage/clover.xml
2024-04-08 01:51:23 -06:00
token: ${{ secrets.CODECOV_TOKEN }}