codebreaker 0.3.2

Decrypt & encrypt any cheat code for CodeBreaker PS2
Documentation
name: CI

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]
  workflow_dispatch: {}

env:
  CARGO_TERM_COLOR: always
  RUST_BACKTRACE: full

jobs:
  build:
    name: Build and test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - uses: taiki-e/install-action@v2
        with:
          tool: cargo-hack,cargo-nextest
      - run: cargo fmt --check
      - run: cargo hack build --each-feature --all-targets
      - run: cargo hack clippy --each-feature --all-targets -- -D warnings
      - run: cargo hack nextest run --each-feature