Skip to content

Commit

Permalink
updating workflows (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
butuzov authored Dec 31, 2023
1 parent aeda2c2 commit d5ebdd0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
Static-Analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
Expand All @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9, 3.10, 3.11 ]
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ]

steps:
- name: Checkout
Expand All @@ -55,6 +55,6 @@ jobs:
- run: make tests

- name: codecov.io
if: matrix.python-version == 3.11
if: matrix.python-version == "3.11"
run: bash <(curl -s https://codecov.io/bash)

2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
Expand Down

0 comments on commit d5ebdd0

Please sign in to comment.