Bump idna from 3.4 to 3.7 #44
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: '*' | |
pull_request: | |
branches: '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pipx install poetry # https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#caching-packages | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
cache: poetry | |
- name: install python packages | |
run: poetry install --with dev --no-interaction | |
- run: poetry run ruff format --check futaba |