Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.

style: Fix clippy warnings #502

style: Fix clippy warnings

style: Fix clippy warnings #502

Workflow file for this run

name: Run tests
on:
pull_request:
push:
branches:
- master
permissions:
contents: read
# Write permissions are required in order to produce annotations.
checks: write
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.75.0
components: rustfmt, clippy
- name: Checkout Git repository
uses: actions/checkout@master
- name: Check Rust formatting
run: cargo fmt -- --check
- name: lint with clippy
uses: 10XGenomics/clippy-check@main
with:
args: --all-targets
- uses: EmbarkStudios/cargo-deny-action@v1
- name: Build
run: cargo build --release
- name: Unit tests
run: cargo test --release -- --nocapture