From 703cfe9ee0e936c4a7e1dff80a26e58134a8584c Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Sun, 30 Jan 2022 13:12:07 -0600 Subject: [PATCH] Use stable black, use python 3.9 --- .github/workflows/python_style_checks.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python_style_checks.yml b/.github/workflows/python_style_checks.yml index 5e4b9a1d9f..035a9bb43f 100644 --- a/.github/workflows/python_style_checks.yml +++ b/.github/workflows/python_style_checks.yml @@ -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 @@ -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" @@ -42,7 +46,7 @@ jobs: strategy: matrix: - python-version: [3.7] + python-version: [3.9] steps: - uses: actions/checkout@v2