Skip to content

Commit

Permalink
add a rust GitHub workflow (#4)
Browse files Browse the repository at this point in the history
* add a rust GitHub workflow

* oopsie
  • Loading branch information
adamperkowski authored Oct 13, 2024
1 parent 4fa2ea8 commit 52f1ced
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Rust
on:
push:
branches: ["main"]
paths:
- '**/*.rs'
- 'src/**'
- 'Cargo.toml'
- 'Cargo.lock'
pull_request:
paths:
- '**/*.rs'
- 'src/**'
- 'Cargo.toml'
- 'Cargo.lock'
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- name: Build
run: |
cargo build --verbose
cargo build --release --verbose
check:
runs-on: ubuntu-latest
needs: build

steps:
- uses: actions/checkout@v4

- name: Run cargo clippy
run: |
cargo clippy -- -Dwarnings
cargo clippy --release -- -Dwarnings
- name: Run cargo fmt
run: cargo fmt --all --check

0 comments on commit 52f1ced

Please sign in to comment.