Skip to content

Upgrade Poetry version #29

Upgrade Poetry version

Upgrade Poetry version #29

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install linter
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Linting code
run: |
ruff check .
type-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install type checker
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Type checking code
run: |
mypy . --explicit-package-bases