Skip to content

feat: implement creator keys contract logic and add comprehensive tes… #97

feat: implement creator keys contract logic and add comprehensive tes…

feat: implement creator keys contract logic and add comprehensive tes… #97

Workflow file for this run

name: Contracts CI
on:
push:
branches:
- main
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Format check
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --workspace --all-targets -- -D warnings
- name: Test
run: cargo test --workspace