Skip to content

Commit

Permalink
Adjust workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
erskingardner committed Dec 31, 2024
1 parent f4a7b3b commit ffb03a2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 23 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "build"
name: "Build & Test"

on:
workflow_call: {} # Allow this workflow to be called by other workflows
Expand Down Expand Up @@ -44,6 +44,12 @@ jobs:
- name: install frontend dependencies
run: bun install

- name: Run tests
run: cd src-tauri && cargo test --all-features

- name: Run clippy
run: cd src-tauri && cargo clippy -- -D warnings

# If tagName and releaseId are omitted tauri-action will only build the app and won't try to upload any assets.
- uses: tauri-apps/tauri-action@v0
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "release"
name: "Release"

on:
push:
Expand Down
21 changes: 0 additions & 21 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit ffb03a2

Please sign in to comment.