Skip to content

Commit

Permalink
[CI] CI always check PR without skip (#156)
Browse files Browse the repository at this point in the history
* feat/ci_dont_skip_pr

* remove all-features on test case and skip test hang issue
  • Loading branch information
hero78119 authored Aug 21, 2024
1 parent d2e1f9c commit 0cc384a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
cancel_others: 'true'
concurrent_skipping: 'same_content_newer'
paths_ignore: '["**/README.md"]'
do_not_skip: '["pull_request", "workflow_dispatch", "schedule", "merge_group"]'

lints:
needs: [skip_check]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
cancel_others: 'true'
concurrent_skipping: 'same_content_newer'
paths_ignore: '["**/README.md"]'
do_not_skip: '["pull_request", "workflow_dispatch", "schedule", "merge_group"]'

tests:
needs: [skip_check]
Expand Down
2 changes: 1 addition & 1 deletion Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RAYON_NUM_THREADS = "${CORE}"

[tasks.tests]
command = "cargo"
args = ["test", "--lib", "--release", "--all", "--all-features"]
args = ["test", "--lib", "--release", "--all"]

[tasks.fmt-check]
command = "cargo"
Expand Down

0 comments on commit 0cc384a

Please sign in to comment.