Skip to content

Add apply changes

Add apply changes #93

Workflow file for this run

name: ci
on:
pull_request: null
push:
branches: [main]
env:
CARGO_INCREMENTAL: 0
CI: 1
RUST_BACKTRACE: short
RUSTFLAGS: "-D warnings"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache rust
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build
- name: Check formatting
run: cargo fmt -- --check
- name: Run clippy
run: cargo clippy
- name: Test
run: cargo test