fix: remove kyc_verified from payments and rename kyc_verified_review… #480
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
rununittest: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install cargo-near | |
run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/cargo-near/releases/latest/download/cargo-near-installer.sh | sh | |
- name: Build discussions contract | |
run: cd discussions && cargo near build | |
- name: Build community contract | |
run: cd community && cargo near build | |
- name: Build community factory contract | |
run: cd community-factory && cargo near build | |
- name: Build devhub contract | |
run: cargo near build | |
- name: Unit tests | |
run: cargo test |