mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-15 23:41:45 +00:00
fix: try with normal validation
This commit is contained in:
parent
a873fd5547
commit
c7fedd3bf9
1 changed files with 10 additions and 0 deletions
10
.github/workflows/main.yml
vendored
10
.github/workflows/main.yml
vendored
|
|
@ -1,6 +1,16 @@
|
||||||
name: Workflow for Codecov Action
|
name: Workflow for Codecov Action
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
jobs:
|
jobs:
|
||||||
|
test-validation:
|
||||||
|
runs-on: macos-latest
|
||||||
|
steps:
|
||||||
|
- name: Run validation
|
||||||
|
run: |
|
||||||
|
curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import # One-time step
|
||||||
|
curl -Os https://cli.codecov.io/latest/macos/codecov
|
||||||
|
curl -Os https://cli.codecov.io/latest/macos/codecov.SHA256SUM
|
||||||
|
curl -Os https://cli.codecov.io/latest/macos/codecov.SHA256SUM.sig
|
||||||
|
gpgv codecov.SHA256SUM.sig codecov.SHA256SUM
|
||||||
run:
|
run:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue