Skip to content

Commit

Permalink
feat(ci): setup
Browse files Browse the repository at this point in the history
  • Loading branch information
cvng committed Feb 3, 2024
1 parent 7765344 commit 3888951
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push]

env:
RUSTFLAGS: --deny warnings

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy, rustfmt
- uses: swatinem/rust-cache@v2
- run: cargo fmt --check
- run: cargo build
- run: cargo check
- run: cargo lint --all-targets
- run: cargo test

0 comments on commit 3888951

Please sign in to comment.