Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@ jobs:
cargo nextest run --profile ci --features debug;
- name: Run Struct Tests
run: deno task test

- name: Run cargo publish dry-run (release branches only)
if: startsWith(github.head_ref, 'release/')
run: |
echo "Running cargo publish dry-run..."
cargo publish --dry-run

- name: Upload test results
uses: EnricoMi/publish-unit-test-result-action@v2
with:
Expand Down
Loading