Pytest CLI test using partial mocking #1348
Workflow file for this run
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: json syntax check | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
permissions: | |
contents: read | |
pull-requests: write # required to leave comments on pull requests | |
jobs: | |
json-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # [email protected] | |
- name: json syntax check | |
uses: GrantBirki/json-yaml-validate@e42e6ece9b97f2b220274c909a9a98e380c2c9fd # [email protected] | |
with: | |
exclude_file: ".github/config/exclude.txt" # .gitignore style file for exclusions | |
comment: "true" # allow PR comments with error messages |