Skip to content

Commit

Permalink
test github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
abelcarreras committed Nov 7, 2024
1 parent 2b5feb3 commit a8e29b2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
if: github.ref == 'refs/heads/master'
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down Expand Up @@ -49,7 +50,7 @@ jobs:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
needs: [ test_code ]
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/test_wheels'
strategy:
matrix:
os: [ ubuntu-latest, windows-2019, macos-13 ]
Expand Down Expand Up @@ -91,7 +92,7 @@ jobs:
name: Build source distribution
needs: [ test_code ]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/test_wheels'
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand Down

0 comments on commit a8e29b2

Please sign in to comment.