Skip to content

Merge pull request #56 from altescy/modify-deps #129

Merge pull request #56 from altescy/modify-deps

Merge pull request #56 from altescy/modify-deps #129

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request: {}
jobs:
tests:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: |
poetry install --extras all
make clean
- name: Lint with pysen
run: make lint
- name: Test with pytest
run: make test