Skip to content

Commit

Permalink
feat: test action in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
BD103 committed Aug 7, 2024
1 parent c9ebe81 commit 70efbf8
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/test.yml
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.

0 comments on commit 70efbf8

Please sign in to comment.