Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Oct 7, 2024
1 parent d09ab3a commit 046eae8
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
- {name: '3.8', python: '3.8', os: ubuntu-latest}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
os: [ubuntu-latest, windows-2019, macos-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up QEMU
if: runner.os == 'Linux'
Expand All @@ -84,7 +84,8 @@ jobs:
# CIBW_TEST_REQUIRES: pytest colormath==2.0.2
# CIBW_TEST_COMMAND: python -m pytest {project}/tests

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
overwrite: true
with:
path: ./wheelhouse

Expand All @@ -94,9 +95,9 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.10'
Expand All @@ -108,15 +109,16 @@ jobs:
- name: Build sdist
run: python setup.py sdist

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
overwrite: true
with:
path: dist/*.tar.gz

upload_pypi:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
Expand Down

0 comments on commit 046eae8

Please sign in to comment.