2023-01-19 01:55:27 +00:00
|
|
|
name: CI
|
2023-01-19 01:47:14 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
|
|
|
|
jobs:
|
2023-01-19 01:55:27 +00:00
|
|
|
ci:
|
|
|
|
name: CI
|
2023-01-19 01:47:14 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
components: rustfmt, clippy
|
|
|
|
|
|
|
|
- name: Rustfmt
|
|
|
|
run: cargo fmt -- --check
|
|
|
|
|
2023-01-19 01:55:27 +00:00
|
|
|
- name: Build
|
|
|
|
run: cargo build --locked --verbose
|
|
|
|
|
2023-01-19 01:47:14 +00:00
|
|
|
- name: Clippy
|
|
|
|
run: cargo clippy
|
2023-01-19 01:55:27 +00:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: cargo test
|