Skip to content

Commit

Permalink
Use stable black, use python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-pavlyk committed Jan 30, 2022
1 parent 8b17f1c commit 703cfe9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/python_style_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
# The type of runner that the job will run on
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.9]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand All @@ -33,7 +37,7 @@ jobs:
- uses: actions/setup-python@v2

# Run black code formatter
- uses: psf/black@21.4b2
- uses: psf/black@stable
with:
args: ". --check"

Expand All @@ -42,7 +46,7 @@ jobs:

strategy:
matrix:
python-version: [3.7]
python-version: [3.9]

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 703cfe9

Please sign in to comment.