Skip to content

Commit

Permalink
Fix up build
Browse files Browse the repository at this point in the history
  • Loading branch information
SonicField committed Oct 4, 2024
1 parent 2c30ba0 commit 3b914c9
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,30 @@ jobs:
build:
strategy:
matrix:
python-version: [3.13-rc, 3.13t-rc]
runs-on: ubuntu-latest
python-version: [3.13.0-rc.3, 3.14.0-alpha.0]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install dependencies
run: |
pip install wheel
- name: Build and test
- name: Build
run: |
python setup.py bdist_wheel
- name: Test
run: python -m ft_utils.test.test_run_all
working-directory: ${{github.workspace}}

0 comments on commit 3b914c9

Please sign in to comment.