Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate CI workflow from Docker to native GitHub actions #494

Draft
wants to merge 11 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Only test build on ubuntu-latest
  • Loading branch information
gemenerik committed Oct 25, 2024
commit 043a58dbd97bdfa52f763291dc1268dec7b6e1fe
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ on:

jobs:
build:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
@@ -20,7 +20,7 @@ jobs:
- run: pip install build
- run: python -m build
pip-install:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
@@ -33,7 +33,7 @@ jobs:
- run: pip install build
- run: pip install .
pip-editable-install:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5