Skip to content

Commit

Permalink
update python and black version in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ltatka committed Dec 7, 2024
1 parent 4b0183e commit 2b1f826
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python 3.8
uses: actions/setup-python@v2
- uses: actions/checkout@v3
- name: Setup Python 3.9
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.9"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black[colorama]==24.10.0
- name: Run black
uses: psf/black@stable
Expand Down

0 comments on commit 2b1f826

Please sign in to comment.