Add recursive delegation for nft-style voting schems #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- develop | |
env: | |
SOLANA_CLI_VERSION: 1.16.13 | |
NODE_VERSION: 18.12.1 | |
jobs: | |
test-rust-lint: | |
name: Test Rust Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/setup/ | |
- uses: actions/cache@v2 | |
name: Cache Cargo registry + index | |
id: cache-cargo-build | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
key: cargo-${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }} | |
- run: cargo fmt -- --check | |
- run: cargo clippy --all-targets -- -D warnings -A clippy::result_large_err -A clippy::too_many_arguments -A clippy::uninlined-format-args -A ambiguous_glob_reexports | |
test-unit: | |
name: Rust Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/setup/ | |
- uses: actions/cache@v2 | |
name: Cache Cargo registry + index | |
id: cache-cargo-build | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
key: cargo-${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }} | |
- run: cargo test --lib | |
build: | |
name: Build Anchor | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/build-anchor/ | |
with: | |
testing: true | |
test-contracts: | |
needs: build | |
name: Test Anchor Contracts | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
test: | |
- tests/nft-voter.ts | |
- tests/organization-wallet.ts | |
- tests/organization.ts | |
- tests/proposal.ts | |
- tests/state-controller.ts | |
- tests/token-voter.ts | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/build-anchor/ | |
with: | |
testing: true | |
- uses: ./.github/actions/setup-ts/ | |
- name: Start Anchor Localnet | |
run: ~/.cargo/bin/anchor localnet --skip-build --provider.wallet ~/.config/solana/id.json & sleep 2 | |
- name: Wait for localnet to start | |
run: | | |
while [[ "$(curl -s http://localhost:8899/health)" != "ok" ]]; do | |
echo "Waiting for local Anchor network to start..." | |
sleep 5 | |
done | |
- run: ANCHOR_WALLET=${HOME}/.config/solana/id.json yarn run ts-mocha -p ./tsconfig.test.json -t 1000000 --exit $TEST | |
env: | |
TESTING: true | |
TEST: ${{ matrix.test }} | |
ANCHOR_PROVIDER_URL: http://127.0.0.1:8899 |