Skip to content

refactor: replace string registry with enum and update related logic #1

refactor: replace string registry with enum and update related logic

refactor: replace string registry with enum and update related logic #1

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "main" ]
paths:
- '**/*.rs'
- '**/*.toml'
- 'Cargo.lock'
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Format, Lint & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --check
- run: cargo clippy --workspace -- -D warnings
- run: cargo test --workspace