Skip to content

Commit

Permalink
CI: windows requires to manually setup python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
automainint committed Apr 11, 2024
1 parent c1ecb14 commit a088cc2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Setup Poetry
run: |
curl -fsS https://install.python-poetry.org | python - -y
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Setup Poetry
run: |
curl -fsS https://install.python-poetry.org | python - -y
Expand All @@ -37,6 +41,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Setup Poetry
run: |
curl -fsS https://install.python-poetry.org | python - -y
Expand Down Expand Up @@ -72,6 +80,10 @@ jobs:
- name: Check distributions
run: |
ls -la dist
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Setup Poetry
run: |
curl -fsS https://install.python-poetry.org | python - -y
Expand Down

0 comments on commit a088cc2

Please sign in to comment.