Skip to content

Commit 665e11e

Browse files
committed
improve CI behavior
1 parent b7ada4b commit 665e11e

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,10 @@ jobs:
9393
aws --endpoint-url http://127.0.0.1:9000 s3 mb s3://timefusion-test || true
9494
aws --endpoint-url http://127.0.0.1:9000 s3 mb s3://timefusion-tests || true
9595
96-
- name: Run all tests
97-
run: cargo test --all-features -- --include-ignored
96+
- name: Run tests
97+
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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: Build and Deploy
33
on:
44
push:
55
branches: [ master ]
6-
pull_request:
7-
branches: [ master ]
86

97
jobs:
108
build:

0 commit comments

Comments
 (0)