Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit a0045bb

Browse files
author
Hendrik van Antwerpen
committed
Run tests as an extra safe guard against rogue tags
1 parent e6619c2 commit a0045bb

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/publish-lsp-positions.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
- name: Checkout repository
1919
uses: actions/checkout@v2
2020
# TODO Verify the crate version matches the tag
21+
- name: Test crate
22+
run: cargo test --all-features
23+
working-directory: ${{ env.CRATE_DIR }}
2124
- name: Verify publish crate
2225
run: cargo publish --dry-run
2326
working-directory: ${{ env.CRATE_DIR }}

.github/workflows/publish-stack-graphs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
- name: Checkout repository
1919
uses: actions/checkout@v2
2020
# TODO Verify the crate version matches the tag
21+
- name: Test crate
22+
run: cargo test --all-features
23+
working-directory: ${{ env.CRATE_DIR }}
2124
- name: Verify publish crate
2225
run: cargo publish --dry-run
2326
working-directory: ${{ env.CRATE_DIR }}

.github/workflows/publish-tree-sitter-stack-graphs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
- name: Checkout repository
1919
uses: actions/checkout@v2
2020
# TODO Verify the crate version matches the tag
21+
- name: Test crate
22+
run: cargo test --all-features
23+
working-directory: ${{ env.CRATE_DIR }}
2124
- name: Verify publish crate
2225
run: cargo publish --dry-run
2326
working-directory: ${{ env.CRATE_DIR }}

0 commit comments

Comments
 (0)