Skip to content

Fix typo

Fix typo #70

Workflow file for this run

name: Rust
on: [push, pull_request]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Check
run: cargo check --all-targets
- name: Run tests
run: cargo test
- name: Clean
run: cargo clean
- name: Check formatting
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy --tests -- -Dwarnings
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Check
run: cargo check --all-targets
- name: Run tests
run: cargo test
- name: Clean
run: cargo clean
- name: Check formatting
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy --tests -- -Dwarnings