Feat support winning choice #128
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 | |
env: | |
PRIVATE_KEY: "0xafdfd9c3d2095ef696594f6cedcae59e72dcd697e2a7521b1578140422a4f890" # This is a test private key | |
SEPOLIA_SUBGRAPH_URL: "https://api.studio.thegraph.com/query/23545/boost-sepolia/version/latest" | |
MAINNET_SUBGRAPH_URL: "https://api.studio.thegraph.com/query/23545/boost/version/latest" | |
POLYGON_SUBGRAPH_URL: "https://api.studio.thegraph.com/query/23545/boost-polygon/version/latest" | |
BOOST_NAME: "boost" | |
BOOST_VERSION: "0.1.0" | |
VERIFYING_CONTRACT: "0x8E8913197114c911F13cfBfCBBD138C1DC74B964" | |
SLOT_URL: "https://beaconcha.in/api/v1/slot/" | |
EPOCH_URL: "https://beaconcha.in/api/v1/epoch/" | |
BEACONCHAIN_API_KEY: ${{ secrets.BEACONCHAIN_API_KEY }} | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
# This workflow run tests and build for each push | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Update local toolchain | |
run: | | |
rustup update | |
rustup component add clippy | |
- name: Toolchain info | |
run: | | |
cargo --version --verbose | |
rustc --version | |
cargo clippy --version | |
- name: Lint | |
run: | | |
cargo fmt -- --check | |
cargo clippy -- -D warnings -D clippy::perf | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Update local toolchain | |
run: | | |
rustup update | |
- name: Toolchain info | |
run: | | |
cargo --version --verbose | |
rustc --version | |
- name: Test | |
run: | | |
cargo check | |
cargo test --all | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Update local toolchain | |
run: | | |
rustup update | |
- name: Toolchain info | |
run: | | |
cargo --version --verbose | |
rustc --version | |
- name: Build | |
run: | | |
cargo build |