Skip to content

Commit

Permalink
Install required dependencies for nightly. Run same script as docker …
Browse files Browse the repository at this point in the history
…does.
  • Loading branch information
gemenerik committed Nov 20, 2024
1 parent e5048d4 commit 2866ce0
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, lab-mac, windows-latest]
python-version: [3.10, 3.11, 3.12, 3.13]
python-version: ["3.10", "3.11", "3.12", "3.13"]

runs-on: ${{ matrix.os }}

steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand All @@ -25,13 +25,12 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Verify
run: ./tools/build/verify

- name: Test
run: ./tools/build/test
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build pre-commit
- name: Build
- name: Verify, test, and build
run: ./tools/build/build

- name: Build docs
Expand Down

0 comments on commit 2866ce0

Please sign in to comment.