diff options
-rw-r--r-- | .github/workflows/wee-slack.yml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/wee-slack.yml b/.github/workflows/wee-slack.yml index f0df4a0..07c86f4 100644 --- a/.github/workflows/wee-slack.yml +++ b/.github/workflows/wee-slack.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 @@ -23,17 +23,17 @@ jobs: - run: pip install --upgrade pipenv - run: pipenv install --dev --skip-lock - - name: Lint with Flake8 - run: | - # stop the build if there are Python syntax errors or undefined names - pipenv run flake8 . + - name: Lint with Flake8 + run: | + # stop the build if there are Python syntax errors or undefined names + pipenv run flake8 . - # exit-zero treats all errors as warnings. - pipenv run flake8 . --exit-zero --select=C,E,F,W + # exit-zero treats all errors as warnings. + pipenv run flake8 . --exit-zero --select=C,E,F,W - - name: Check Python formatting - run: | - pipenv run black --check . + - name: Check Python formatting + run: | + pipenv run black --check . - name: python/test run: | |