Skip to content

Commit df94020

Browse files
committed
Fix integration_tests workflow
1 parent ff45f72 commit df94020

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,8 @@ jobs:
1717
# Will not run if the event is a PR to bump-meilisearch-v* (so a pre-release PR)
1818
# Will still run for each push to bump-meilisearch-v*
1919
if: github.event_name != 'pull_request' || !startsWith(github.base_ref, 'bump-meilisearch-v')
20-
name: Cargo check
21-
uses: actions-rs/cargo@v1
22-
with:
23-
command: check
24-
args: --workspace --all-targets --all
25-
name: integration-tests
2620
runs-on: ubuntu-latest
21+
name: integration-tests
2722
steps:
2823
- uses: actions/checkout@v2
2924
- name: Build
@@ -32,6 +27,11 @@ jobs:
3227
run: docker run -d -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --no-analytics --master-key=masterKey
3328
- name: Run tests
3429
run: cargo test --verbose
30+
- name: Cargo check
31+
uses: actions-rs/cargo@v1
32+
with:
33+
command: check
34+
args: --workspace --all-targets --all
3535

3636
linter:
3737
name: clippy-check

0 commit comments

Comments
 (0)