Try fix pyproject.toml deploy II #163
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 | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
release: | |
types: | |
- published | |
jobs: | |
json: | |
# Linux is sufficient for the json test. The individual packages should be | |
# checked for different OS's. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
shell: bash | |
run: pip install pytest | |
- name: Run test | |
shell: bash | |
run: pytest tests/test_json.py |