Skip to content
Merged
Changes from 1 commit
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
Next Next commit
ci: Run all checks as pull request tests
  • Loading branch information
bluss committed Aug 8, 2024
commit 7e5762b984faa4ecf25520eb92ec4ef53126f73a
9 changes: 6 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
on:
pull_request:
merge_group:
push:
branches:
- master

name: Continuous integration

Expand Down Expand Up @@ -86,7 +89,7 @@ jobs:
- run: ./scripts/all-tests.sh "$FEATURES" ${{ matrix.rust }}

cross_test:
if: ${{ github.event_name == 'merge_group' }}
#if: ${{ github.event_name == 'merge_group' }}
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -110,7 +113,7 @@ jobs:
- run: ./scripts/cross-tests.sh "docs" ${{ matrix.rust }} ${{ matrix.target }}

cargo-careful:
if: ${{ github.event_name == 'merge_group' }}
#if: ${{ github.event_name == 'merge_group' }}
runs-on: ubuntu-latest
name: cargo-careful
steps:
Expand All @@ -124,7 +127,7 @@ jobs:
- run: cargo careful test -Zcareful-sanitizer --features="$FEATURES"

docs:
if: ${{ github.event_name == 'merge_group' }}
#if: ${{ github.event_name == 'merge_group' }}
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down