Skip to content

Commit

Permalink
Fixes syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
holm10 committed Mar 13, 2024
1 parent fa208b4 commit 07fe91b
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/build-test-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
tests: [fulltests, unittests/D+C, unittests/D_mols, unittests/D_only, unittests/slab_D_only]
steps:
- uses: actions/checkout@v4
- name: Current action:
run: echo ${{ github.event.action }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand All @@ -42,7 +40,7 @@ jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }} for Python ${{ matrix.pyver }}
if: ${{ github.event.action }} == 'opened' || ${{ github.event.action }} == 'edited' || ${{ github.event.action }} == 'closed'
if: github.event_name == 'pull_request'
needs: run-all-tests
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -86,7 +84,7 @@ jobs:

build_wheels_pypy:
name: Build PyPy wheels on ${{ matrix.os }}
if: ${{ github.event.action }} == 'opened' || ${{ github.event.action }} == 'edited' || ${{ github.event.action }} == 'closed'
if: github.event_name == 'pull_request'
needs: run-all-tests
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -186,9 +184,9 @@ jobs:


gather_wheels:
needs: [build_wheels, build_wheels_pypy]
if: ${{ github.event.action }} == 'opened' || ${{ github.event.action }} == 'edited' || ${{ github.event.action }} == 'closed'
name: Gather built wheels
needs: [build_wheels, build_wheels_pypy]
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Download all Artifacts and merges them
Expand Down

0 comments on commit 07fe91b

Please sign in to comment.