Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ jobs:
- name: Setup tmate debug session
uses: mxschmitt/action-tmate@v3
if: env.RUN_TMATE
test:
test-source:
name: test source - py${{ matrix.python-version }} - ${{ matrix.platform }}
needs:
Comment thread
mcdonnnj marked this conversation as resolved.
- diagnostics
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
runs-on: ubuntu-latest
needs:
- diagnostics
- test
- test-source
steps:
- name: Apply standard cisagov job preamble
uses: cisagov/action-job-preamble@v1
Expand Down Expand Up @@ -335,12 +335,10 @@ jobs:
- name: Setup tmate debug session
uses: mxschmitt/action-tmate@v3
if: env.RUN_TMATE
build:
build-wheel:
name: build wheel - py${{ matrix.python-version }}
needs:
- diagnostics
Comment thread
mcdonnnj marked this conversation as resolved.
- lint
- test
permissions:
# actions/checkout needs this to fetch code
contents: read
Expand Down Expand Up @@ -413,11 +411,12 @@ jobs:
- name: Setup tmate debug session
uses: mxschmitt/action-tmate@v3
if: env.RUN_TMATE
test-build:
test-wheel:
name: test built wheel - py${{ matrix.python-version }} - ${{ matrix.platform }}
needs:
- diagnostics
- build
- build-wheel
- test-source
Comment thread
mcdonnnj marked this conversation as resolved.
permissions:
# actions/checkout needs this to fetch code
contents: read
Expand Down
Loading