Skip to content

Merge pull request #40 from ChorusOne/custom-testnets #121

Merge pull request #40 from ChorusOne/custom-testnets

Merge pull request #40 from ChorusOne/custom-testnets #121

Workflow file for this run

name: CI
# This workflow run tests and build for each push
on:
push:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update local toolchain
run: |
rustup update
rustup install nightly
- name: Toolchain info
run: |
cargo --version --verbose
rustc --version
- name: Lint
run: |
cargo fmt -- --check
cargo clippy -- -D warnings
- name: Test
run: |
cargo check
cargo test --all
- name: Build
run: |
cargo build --release
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1