Skip to content

Commit

Permalink
chore: fix CI config. (#1013)
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat authored Dec 26, 2024
1 parent 5183ab6 commit ad1d0e3
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
{ os: 'ubuntu-latest', python-version: '3.11' },
{ os: 'ubuntu-latest', python-version: '3.12' },
{ os: 'ubuntu-latest', python-version: '3.13' },
{ os: 'ubuntu-latest', python-version: 'pypy3.8' },
{ os: 'ubuntu-latest', python-version: 'pypy3.9' },
{ os: 'ubuntu-latest', python-version: 'pypy3.10' },
{ os: 'macos-latest', python-version: '3.8' },
Expand All @@ -39,7 +38,6 @@ jobs:
{ os: 'macos-latest', python-version: '3.11' },
{ os: 'macos-latest', python-version: '3.12' },
{ os: 'macos-latest', python-version: '3.13' },
{ os: 'macos-latest', python-version: 'pypy3.8' },
{ os: 'macos-latest', python-version: 'pypy3.9' },
{ os: 'macos-latest', python-version: 'pypy3.10' },
{ os: 'windows-latest', python-version: '3.8' },
Expand All @@ -57,14 +55,14 @@ jobs:
run: |
curl https://httpbinx.fly.dev/ip
- name: Install poetry
run: pipx install poetry

- name: Setup Python ${{ matrix.platform.python-version }} on ${{ matrix.platform.os }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.platform.python-version }}

- name: Install poetry
run: pip install poetry

- name: Install dependencies
run: |
poetry install --extras 'aiohttp'
Expand Down Expand Up @@ -100,14 +98,14 @@ jobs:
run: |
curl https://httpbinx.fly.dev/ip
- name: Install poetry
run: pipx install poetry

- name: Setup Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.13

- name: Install poetry
run: pip install poetry

- name: Install dependencies
run: |
poetry install --extras 'aiohttp'
Expand Down Expand Up @@ -137,8 +135,13 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.13

- name: Install poetry
run: pipx install poetry
run: pip install poetry

- name: Build Packages
run: poetry build
Expand Down

0 comments on commit ad1d0e3

Please sign in to comment.