Skip to content

Changes to make speedups possible #26

Changes to make speedups possible

Changes to make speedups possible #26

Workflow file for this run

name: Rust
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main ]
env:
RUST_BACKTRACE: full
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
run: cargo test --verbose
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: rustup component add clippy
- name: Clippy
run: cargo clippy -- -Dwarnings