Merge pull request #730 from ascopes/dependabot/maven/main/com.puppyc… #108
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate configuration | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "**" ] | |
workflow_call: {} | |
workflow_dispatch: {} | |
jobs: | |
build: | |
name: Validate configuration | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
with: | |
check_together: 'yes' | |
scandir: './scripts' | |
- name: Validate codecov.yml | |
shell: bash | |
run: curl -vvv --fail --data-binary @- https://codecov.io/validate < codecov.yml |