Skip to content

Commit

Permalink
ci: Fix yaml miss
Browse files Browse the repository at this point in the history
Release-As: 0.9.0
  • Loading branch information
jacobsvante committed Jun 2, 2022
1 parent 7bbd0f8 commit 9180897
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- uses: actions/setup-python@v3
with:
python-version: '3.10'
architecture: x64
- uses: abatilo/actions-poetry@v2.1.4
with:
poetry-version: '1.1.13'
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.10, 3.9, 3.8, 3.7]
python-version: ['3.10', '3.9', '3.8', '3.7']
extras: ['', all, soap_api, orjson, cli]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
python-version: '${{ matrix.python-version }}'
architecture: x64
- uses: abatilo/actions-poetry@v2.1.4
with:
poetry-version: '1.1.13'
Expand All @@ -31,13 +32,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10]
python-version: ['3.10']
extras: [all]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
python-version: '${{ matrix.python-version }}'
architecture: x64
- uses: abatilo/actions-poetry@v2.1.4
with:
poetry-version: '1.1.13'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
- uses: actions/setup-python@v3
with:
python-version: '3.10'
architecture: x64
- uses: abatilo/actions-poetry@v2.1.4
with:
poetry-version: '1.1.13'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.10'
python-version: '3.9'
architecture: x64
- uses: abatilo/actions-poetry@v2.1.4
with:
poetry-version: '1.1.13'
Expand Down

0 comments on commit 9180897

Please sign in to comment.