We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7ada4b commit 665e11eCopy full SHA for 665e11e
.github/workflows/ci.yml
@@ -93,5 +93,10 @@ jobs:
93
aws --endpoint-url http://127.0.0.1:9000 s3 mb s3://timefusion-test || true
94
aws --endpoint-url http://127.0.0.1:9000 s3 mb s3://timefusion-tests || true
95
96
- - name: Run all tests
97
- run: cargo test --all-features -- --include-ignored
+ - name: Run tests
+ run: cargo test --all-features
98
+
99
+ - name: Run ignored tests (optional)
100
+ continue-on-error: true
101
+ timeout-minutes: 10
102
+ run: cargo test --all-features -- --ignored
.github/workflows/deploy.yml
@@ -3,8 +3,6 @@ name: Build and Deploy
3
on:
4
push:
5
branches: [ master ]
6
- pull_request:
7
- branches: [ master ]
8
9
jobs:
10
build:
0 commit comments