Skip to content

Commit

Permalink
run for specific branches
Browse files Browse the repository at this point in the history
  • Loading branch information
rjonczy committed Nov 21, 2023
1 parent 017790b commit 09dace1
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,26 @@ name: Cargo Check
on:
pull_request:
branches:
- '*'
- 'master'
- 'develop'
- 'release*'
push:
branches:
- master
- 'master'
- 'develop'
- 'release*'


jobs:
checker:

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

container:
image: paritytech/ci-unified:bullseye-1.71.0-v20230727

runs-on:
- self-hosted
- x64-tiny
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ name: Lint
on:
pull_request:
branches:
- '*'
- 'master'
- 'develop'
- 'release*'
push:
branches:
- master
- 'master'
- 'develop'
- 'release*'

jobs:
linters:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ name: Test
on:
pull_request:
branches:
- '*'
- 'master'
- 'develop'
- 'release*'
push:
branches:
- master
- 'master'
- 'develop'
- 'release*'

env:
DEBIAN_FRONTEND: noninteractive
Expand Down

0 comments on commit 09dace1

Please sign in to comment.