Skip to content

Commit

Permalink
Merge pull request #1036 from synfinatic/validate-codecov
Browse files Browse the repository at this point in the history
validate codecov workflow
  • Loading branch information
synfinatic authored Aug 22, 2024
2 parents f40be6a + dba54aa commit 786e202
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/validate-codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Validate codecov.yml

on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
paths:
- codecov.yml
- '.github/**'

jobs:
validate-codecov:
name: Validate codecov.yaml
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install curl
run: sudo apt-get install -y curl

- name: Check codecov.yml
run: cat codecov.yml | curl --data-binary @- https://codecov.io/validate

0 comments on commit 786e202

Please sign in to comment.