Skip to content

Commit

Permalink
ci: disable checks for drafts (#1913)
Browse files Browse the repository at this point in the history
  • Loading branch information
wischli authored Jul 15, 2024
1 parent 2169f6f commit 551fb4c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/sanity-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ permissions:
contents: read
jobs:
test-n-lint:
if: ${{ !github.event.pull_request.draft }}
timeout-minutes: 90
name: ${{ matrix.target }}
runs-on: ubuntu-latest-8-cores
Expand Down Expand Up @@ -41,12 +42,13 @@ jobs:
RUSTC_WRAPPER: "sccache"

benchmark-check:
if: ${{ !github.event.pull_request.draft }}
# timeout-minutes: 90 # <- Not needed as ubunt-latest is free of charge
name: bench-check-${{ matrix.runtime }}
runs-on: ubuntu-latest #-4-cores
strategy:
matrix:
runtime: [ altair, centrifuge ]
runtime: [ centrifuge ]
steps:
- name: Check out code
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b #4.1.4
Expand Down

0 comments on commit 551fb4c

Please sign in to comment.