Skip to content

Add whitelist early access window so creators can reward their existing community before public launch #646

Add whitelist early access window so creators can reward their existing community before public launch

Add whitelist early access window so creators can reward their existing community before public launch #646

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