Skip to content

Commit

Permalink
run a cargo check on builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jgunnink committed May 18, 2024
1 parent 0c5215e commit 6288907
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/status-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Status Checks
on:
pull_request:
branches:
- main

jobs:
check:
name: cargo check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo check

0 comments on commit 6288907

Please sign in to comment.