Skip to content

feat: support python 3.11+. #34

feat: support python 3.11+.

feat: support python 3.11+. #34

Workflow file for this run

name: Code checks
on:
- pull_request
jobs:
linters:
name: Auto check
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.11']
steps:
- uses: actions/checkout@v3
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# - name: Tests
# run: pytest --basetemp=tmp