Merge pull request #23 from zb99zhou/fix-secondary-check #96
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: Build and Test Nova | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install | |
run: rustup default stable | |
- name: Install rustfmt Components | |
run: rustup component add rustfmt | |
- name: Install clippy | |
run: rustup component add clippy | |
- name: Install Wasm target | |
run: rustup target add wasm32-unknown-unknown | |
- name: Build | |
run: cargo build --verbose | |
- name: Wasm build | |
run: cargo build --target wasm32-unknown-unknown | |
# - name: Build examples | |
# run: cargo build --examples --verbose | |
# - name: Build benches | |
# run: cargo build --benches --verbose | |
- name: Run tests | |
run: cargo +stable test --release --verbose | |
- name: Check Rustfmt Code Style | |
run: cargo fmt --all -- --check | |
- name: Check clippy warnings | |
run: cargo clippy --all-targets -- -D warnings | |