Drop support for Python <= 3.8 #5
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: Python test | |
on: | |
push: | |
paths-ignore: | |
- '*.md' | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: python -m pip install --upgrade pip | |
- name: Install packaging tools | |
run: pip install setuptools wheel twine | |
# - name: Install PyTest | |
# run: pip install pytest | |
# - name: Install Pylint | |
# run: pip install pylint | |
- name: Install package | |
run: pip install . | |
# - name: Test | |
# run: pytest test/main.py | |
# - name: Lint | |
# run: pylint src test |