Skip to content

Commit

Permalink
ci: allow build, lint, test ci on pre-release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
yanganto committed Apr 22, 2024
1 parent fcb7a87 commit 4deefb6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build Check

on:
push:
branches: [ master ]
branches: [ master 'v*.*' ]
pull_request:
branches: [ master ]
branches: [ master 'v*.*' ]

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Lints

on:
push:
branches: [ master ]
branches: [ master 'v*.*' ]
pull_request:
branches: [ master ]
branches: [ master 'v*.*' ]

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Tests

on:
push:
branches: [ master ]
branches: [ master 'v*.*' ]
pull_request:
branches: [ master ]
branches: [ master 'v*.*' ]

env:
CARGO_TERM_COLOR: always
Expand Down

0 comments on commit 4deefb6

Please sign in to comment.