Skip to content

Fix some clippy warnings #12

Fix some clippy warnings

Fix some clippy warnings #12

Workflow file for this run

name: build and test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: dtolnay/rust-toolchain@1.57.0
- name: Install LLVM package
run: sudo apt-get install llvm-13-dev
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose