Skip to content

Commit

Permalink
Merge branch 'main' into jordens-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
jordens authored Jul 21, 2023
2 parents 8f1d83c + 9ff6a2c commit 4f6b888
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,20 @@ jobs:
compile:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.toolchain == 'nightly' }}
continue-on-error: ${{ matrix.continue-on-error }}
strategy:
matrix:
# keep MSRV in sync in ci.yaml and Cargo.toml
toolchain: [stable, '1.65.0']
features: ['']
continue-on-error: [false]
include:
- toolchain: beta
features: ''
continue-on-error: true
- toolchain: nightly
features: nightly
continue-on-error: true
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -126,8 +129,11 @@ jobs:
hitl-trigger:
runs-on: ubuntu-latest
environment: hitl
# This crucially marks the job as "skipped" when not in the merge queue thus
# counting as passing the required check when adding it to the merge queue.
# See
# https://docs.github.com/en/actions/using-jobs/using-conditions-to-control-job-execution#overview
if: ${{ github.event_name == 'merge_group' }}

steps:
- uses: LouisBrunner/[email protected]
id: hitl-check
Expand Down

0 comments on commit 4f6b888

Please sign in to comment.