Skip to content

Commit 7c0b150

Browse files
committed
fixes 1
1 parent 94b45f4 commit 7c0b150

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/integration.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ jobs:
5656
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
5757
strategy:
5858
matrix:
59+
platform: ['ubuntu-20.04', 'macos-11']
5960
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
61+
fail-fast: false
6062
name: Test Python ${{matrix.python-version}}
6163
steps:
6264
- uses: actions/checkout@v3
@@ -65,7 +67,7 @@ jobs:
6567
with:
6668
python-version: ${{matrix.python-version}}
6769
- name: Cache paths
68-
uses: actions/cache@v2
70+
uses: actions/cache@v3
6971
with:
7072
path: |
7173
.tox
@@ -84,7 +86,8 @@ jobs:
8486
- name: run tests
8587
run: tox -e cover
8688
- name: Upload coverage
87-
uses: codecov/codecov-action@v2
89+
uses: codecov/codecov-action@v3
90+
if: matrix.python_version == '3.9' && matrix.platform != 'macos-11'
8891
with:
8992
fail_ci_if_error: false
9093
token: ${{ secrets.CODECOVTOKEN }}

.github/workflows/publish-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ jobs:
2727
value: "${{ steps.get_version.outputs.VERSION }}"
2828

2929
- name: Set up Python 3.8
30-
uses: actions/setup-python@v1
30+
uses: actions/setup-python@v3
3131
with:
3232
python-version: 3.8
3333

3434
- name: Install Poetry
3535
uses: dschep/install-poetry-action@v1.3
3636

3737
- name: Cache Poetry virtualenv
38-
uses: actions/cache@v1
38+
uses: actions/cache@v3
3939
id: cache
4040
with:
4141
path: ~/.virtualenvs

0 commit comments

Comments
 (0)