Skip to content

Commit

Permalink
Merge pull request #18787 from Veykril/push-uymlpukspxqr
Browse files Browse the repository at this point in the history
Automatically cancel CI checks on new push to same PR
  • Loading branch information
Veykril authored Dec 29, 2024
2 parents 11b351f + dfcff86 commit 293df4c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
pull_request:
merge_group:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
Expand Down Expand Up @@ -103,7 +107,7 @@ jobs:
- name: Run analysis-stats on the rust standard libraries
if: matrix.os == 'ubuntu-latest'
env:
RUSTC_BOOTSTRAP: 1
RUSTC_BOOTSTRAP: 1
run: target/${{ matrix.target }}/debug/rust-analyzer analysis-stats --with-deps --no-sysroot --no-test $(rustc --print sysroot)/lib/rustlib/src/rust/library/

- name: clippy
Expand Down

0 comments on commit 293df4c

Please sign in to comment.