diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yaml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5bc41533c..cb397ae14 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml | |||
@@ -14,6 +14,7 @@ jobs: | |||
14 | env: | 14 | env: |
15 | RUSTFLAGS: -D warnings | 15 | RUSTFLAGS: -D warnings |
16 | CARGO_INCREMENTAL: 0 | 16 | CARGO_INCREMENTAL: 0 |
17 | RUN_SLOW_TESTS: 1 | ||
17 | steps: | 18 | steps: |
18 | 19 | ||
19 | - name: Checkout repository | 20 | - name: Checkout repository |
@@ -46,9 +47,10 @@ jobs: | |||
46 | 47 | ||
47 | - name: Prepare build directory for cache | 48 | - name: Prepare build directory for cache |
48 | run: | | 49 | run: | |
49 | find ./target/debug -maxdepth 1 -type f -delete && \ | 50 | find ./target/debug -maxdepth 1 -type f -delete \ |
50 | rm -fr ./target/debug/{deps,.fingerprint}/{*ra_*,*heavy_test*,*gen_lsp*,*thread_worker*} && \ | 51 | && rm -fr ./target/debug/{deps,.fingerprint}/{*ra_*,*heavy_test*,*gen_lsp*,*thread_worker*} \ |
51 | rm -f ./target/.rustc_info.json | 52 | && rm -f ./target/.rustc_info.json \ |
53 | && rm ./target/.slow_tests_cookie | ||
52 | 54 | ||
53 | type-script: | 55 | type-script: |
54 | name: TypeScript | 56 | name: TypeScript |