Bump the pip-updates group across 1 directory with 22 updates #528
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: Check Python code | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: python:3.12.3 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Poetry | |
run: | | |
python -m pip install --upgrade poetry | |
poetry install --with development | |
- name: Run Python code checks | |
run: | | |
make check-python-code |