Skip to content

Commit

Permalink
ci: update CI versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jungomi committed Jul 12, 2023
1 parent ae912bb commit 9d18eae
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
- name: Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint
run: ruff --show-source py/
- name: Type Check
run: mypy py/ setup.py
- name: Formatting
run: black --check --diff py/ setup.py
- name: Imports Formatting
run: isort --check --diff py/ setup.py
- name: Package Build
run: python -m build .
- uses: actions/checkout@v3
- name: Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint
run: ruff --show-source py/
- name: Type Check
run: mypy py/ setup.py
- name: Formatting
run: black --check --diff py/ setup.py
- name: Imports Formatting
run: isort --check --diff py/ setup.py
- name: Package Build
run: python -m build .

0 comments on commit 9d18eae

Please sign in to comment.