Ignored most of expensive dkg tests and made them run only on PRs to develop/master

This commit is contained in:
Jędrzej Stuczyński
2022-06-14 17:03:35 +01:00
parent 81bbb61dac
commit 088b7ab16d
7 changed files with 39 additions and 0 deletions
+7
View File
@@ -41,6 +41,13 @@ jobs:
command: test
args: --workspace --all-features
- name: Run expensive tests
if: github.ref == 'refs/heads/develop' || github.event.pull_request.base.ref == 'develop' || github.event.pull_request.base.ref == 'master'
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-features -- --ignored
- name: Check formatting
uses: actions-rs/cargo@v1
with: