Skip to content

fix: do not await top level function #3

fix: do not await top level function

fix: do not await top level function #3

Workflow file for this run

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: ./
- name: Check Rust project
run: cargo check
# `cargo-sweep` should delete all build files, but keep the check ones.