Skip to content

Merge pull request #37 from takano32/python-3.12 #13

Merge pull request #37 from takano32/python-3.12

Merge pull request #37 from takano32/python-3.12 #13

Workflow file for this run

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