-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Test action | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
name: Test action | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@stable | ||
|
||
- name: Initialize Rust project | ||
run: cargo init --bin | ||
|
||
- name: Cache build files | ||
uses: Leafwing-Studios/cargo-cache@v2 | ||
|
||
- name: Build Rust project | ||
run: cargo build | ||
|
||
- name: cargo-sweep | ||
uses: ./action.yml | ||
|
||
- name: Check Rust project | ||
run: cargo check | ||
|
||
# `cargo-sweep` should delete all build files, but keep the check ones. |