Skip to content

Revert "Implement Eq and Hash for Type" #73

Revert "Implement Eq and Hash for Type"

Revert "Implement Eq and Hash for Type" #73

Workflow file for this run

on:
push:
permissions: {}
jobs:
fmt:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- run: rustup component add clippy
- run: cargo clippy -- -D warnings
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-z3
- run: rustup show
- uses: Swatinem/rust-cache@v2
- run: cargo test