Merge pull request #37 from takano32/python-3.12 #13
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: Lint and Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pipenv | |
pipenv install | |
pipenv install ruff pytest | |
- name: Lint with ruff | |
run: | | |
pipenv run ruff --select=E9,F63,F7,F82 . | |
- name: Test with pytest | |
run: | | |
pipenv run pytest | |
- name: Test with shinGETsu | |
run: | | |
pipenv run python -m doctest -v shingetsu/cache.py | |
pipenv run python -m doctest -v shingetsu/title.py | |