Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

refactor: fix clippy warn #9

refactor: fix clippy warn

refactor: fix clippy warn #9

Workflow file for this run

name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
RUST_VERSION: "1.78"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust ${{ env.RUST_VERSION }}
run: rustup install ${{ env.RUST_VERSION }}
- name: Set Rust ${{ env.RUST_VERSION }} as default
run: rustup default ${{ env.RUST_VERSION }}
- name: Test with default features
run: cargo test
- name: Test with all features
run: cargo test --all-features