Skip to content

bump version

bump version #5

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
RUSTFLAGS: "-C target-cpu=native"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: clippy
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3
- name: Run clippy
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test