Skip to content

Fixed type name

Fixed type name #2

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- name: Run Clippy
run: cargo clippy
- name: Build
run: cargo build --verbose