Skip to content

Commit

Permalink
ci: remove concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Nov 6, 2023
1 parent 99bd21d commit dd34360
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 16 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
name: CI

on:
pull_request: { types: [opened, synchronize, reopened] }
pull_request_target: {}
pull_request: {}
push: { branches: [main] }

permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build_and_test:
strategy:
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,8 @@ name: Dependabot
on: pull_request_target

permissions:
pull-requests: write
contents: write

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
pull-requests: write

jobs:
review-dependabot-pr:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ permissions:
contents: write
pull-requests: write

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
release:
name: Release
Expand Down
1 change: 0 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ clippy-fix *args:

# Test workspace.
test:
cargo test --workspace --no-default-features
cargo test --workspace --all-features

# Document workspace.
Expand Down

0 comments on commit dd34360

Please sign in to comment.