Skip to content

chore: Reorganize repository onto workspace #49

chore: Reorganize repository onto workspace

chore: Reorganize repository onto workspace #49

Workflow file for this run

name: Rust
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Fmt
run: cargo fmt -- --check
- name: Check
run: cargo check
- name: Clippy
run: cargo clippy
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Tests
run: cargo test
- name: Build
run: cargo build --release --verbose