diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2023-10-22 15:43:23 +0200 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2023-10-22 15:43:23 +0200 |
commit | 26eb1eb1957aa2a7a1d74a2dabb141958464a091 (patch) | |
tree | e6317d5222b0ada1ad05419511779b3937dde6ee /.github/workflows/wee-slack.yml | |
parent | bb4f099cf0c87ff0dc9b4689e2aaf5c377e5b13b (diff) | |
download | wee-slack-26eb1eb1957aa2a7a1d74a2dabb141958464a091.tar.gz |
Update Python versions run in CI
Diffstat (limited to '.github/workflows/wee-slack.yml')
-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: | |