Skip to content

feat: Use usize instead of u8 #6

feat: Use usize instead of u8

feat: Use usize instead of u8 #6

Workflow file for this run

name: Build
on:
push:
branches:
- '*'
pull_request:
branches:
- master
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Format
run: cargo fmt --all -- --check
- name: Build
run: cargo build --verbose
- name: Lint
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Run tests
run: cargo test --verbose