Update ruff requirement from ^0.0.289 to ^0.0.291 #3
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: PR Checks | |
on: [pull_request] | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Set up Python | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
# Set up Poetry | |
- uses: Gr1N/setup-poetry@v8 | |
# Init the project | |
- run: make init | |
# Run the CI checks | |
- run: make ci |