chore(actions): include CI action for checks

I just yanked this from df8570b16e/.github/workflows/ci.yaml.
This commit is contained in:
Erica Marigold 2023-09-13 17:34:32 +05:30 committed by GitHub
parent 8d516df280
commit 82f2d825ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

34
.github/ci.yaml vendored Normal file
View file

@ -0,0 +1,34 @@
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: true
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Rustfmt
run: cargo fmt -- --check
- name: Build
run: cargo build --locked
- name: Clippy
run: cargo clippy
- name: Test
run: cargo test --lib