Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
john0isaac committed May 5, 2024
1 parent 9f6d961 commit 364de25
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/python-types-lint-format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@ permissions:

jobs:
python-types-lint-format:
name: Python ${{ matrix.python_version }} - ${{ matrix.test}} Check - ${{ matrix.os }}
name: Python ${{ matrix.python_version }} - Check ${{ matrix.command }}- ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python_version: [3.8, 3.9, 3.10, 3.11, 3.12]
test: [types, lint, format]
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
command: ["mypy .", "ruff check .", "black ."]
steps:
- uses: actions/checkout@v4
Expand All @@ -36,5 +35,5 @@ jobs:
python3 -m pip install --upgrade pip
python3 -m pip install -e '.[dev]'
- name: Run ${{ matrix.test }} check
- name: Run ${{ matrix.command }} check
run: python -m ${{ matrix.command }}

0 comments on commit 364de25

Please sign in to comment.