Do not require authentication credentials for subcommands that don't need them #285
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: Run CI | |
on: [push, pull_request] | |
jobs: | |
tox: | |
name: Run Tox | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run all envs | |
uses: fedora-python/tox-github-action@main | |
with: | |
tox_env: ${{ matrix.tox_env }} | |
strategy: | |
matrix: | |
tox_env: [py38, py39, py310, py311, py312, black, ruff, mypy] | |
runs-on: ubuntu-latest |