Add cli invalid-json-state to change exit code vor invalid JSON #127
Workflow file for this run
This file contains hidden or 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: CI | |
on: [push, pull_request] | |
jobs: | |
gitHubActionForPytest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8, 3.11, 3.12] | |
name: GitHub Action | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
python -m pip install -r requirements-dev.txt | |
- name: Lint | |
run: | | |
make lint | |
- name: Unit Test | |
run: | | |
make test | |
- name: Coverage | |
run: | | |
make coverage |