Skip to content

Update maintenance info. #31

Update maintenance info.

Update maintenance info. #31

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --all-targets --verbose
- name: Run tests
run: cargo test --test '*' --lib --verbose
- name: Check Formatting
run: cargo fmt --check
- name: Check Code Quality
run: cargo clippy --all-targets -- -D warnings