Skip to content

v0.8.0: Library Rewrite #63

v0.8.0: Library Rewrite

v0.8.0: Library Rewrite #63

Workflow file for this run

name: Rust
on:
push:
branches: [ "stable" ]
pull_request:
branches: [ "stable" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Compilation/Style/Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run All Tests
run: cargo test --verbose
- name: Clippy
run: cargo clippy
- name: Format
run: cargo fmt --check