Don't pin jsonschema in the docs deps #930
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
on: | |
push: | |
branches: | |
- stable | |
- dev | |
pull_request: | |
branches: | |
- stable | |
- dev | |
name: Tests | |
jobs: | |
misc_tests: | |
name: Misc tests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: mark the working directory as safe for Git | |
run: | | |
mkdir -p /home/runner/work/_temp/_github_home/ | |
git config --file /home/runner/work/_temp/_github_home/.gitconfig --add safe.directory /github/workspace | |
- name: Run tests | |
uses: fedora-python/tox-github-action@main | |
with: | |
tox_env: ${{ matrix.tox_env }} | |
dnf_install: krb5-devel openldap-devel git python-distlib | |
strategy: | |
matrix: | |
tox_env: | |
- lint | |
- format | |
- licenses | |
- security | |
- docs | |
runs-on: ubuntu-latest | |
unit_test: | |
name: Unit tests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: mark the working directory as safe for Git | |
run: | | |
mkdir -p /home/runner/work/_temp/_github_home/ | |
git config --file /home/runner/work/_temp/_github_home/.gitconfig --add safe.directory /github/workspace | |
- name: Run tests | |
uses: fedora-python/tox-github-action@main | |
with: | |
tox_env: ${{ matrix.tox_env }} | |
dnf_install: krb5-devel openldap-devel python-distlib | |
strategy: | |
matrix: | |
tox_env: | |
- py39-unittest | |
- py310-unittest | |
runs-on: ubuntu-latest |