Bump pillow from 10.1.0 to 10.2.0 #342
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: "nox" | |
on: | |
pull_request: | |
push: | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.3.0 | |
- name: Setup Python | |
uses: actions/setup-python@v4.5.0 | |
with: | |
python-version: "3.11" | |
- name: Setup Poetry | |
# We install poetry instead of nox, even though the noxfile installs poetry | |
# so that both will use the versions specified in the poetry.lock file | |
run: python3 -m pip install poetry | |
- name: Install dependencies | |
run: poetry install --all-extras | |
- name: Run Nox | |
run: poetry run nox -s lint |