Skip to content

feat!: 放弃2.7支持&使用新工具链和配置 #1

feat!: 放弃2.7支持&使用新工具链和配置

feat!: 放弃2.7支持&使用新工具链和配置 #1

Workflow file for this run

name: CI
on:
pull_request:
branches-ignore:
- "release-**"
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
check-latest: true
- name: Install dependencies
run: |
pip install -e .
- name: Test with pytest
run: |
make test