chore(ci): update basic ci to be faster and nightly fmt #549
Workflow file for this run
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
on: [push, pull_request] | |
name: Basic | |
# Cancel in progress workflows on pull_requests. | |
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test Suite | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout sources | |
uses: actions/checkout@v4 | |
- name: ☁️ Install stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
target: wasm32-unknown-unknown | |
- name: 📋 Run cargo clippy | |
run: cargo clippy -- -D warnings | |
- name: 🧪 Run unit tests | |
if: always() | |
run: cargo test --locked | |
env: | |
RUST_BACKTRACE: 1 | |
- name: 📝 Generate Schema | |
if: always() | |
run: cargo schema --locked --package proxy-contract | |
- name: ✔️ Schema Changes | |
# fails if any changes not committed | |
run: git diff --exit-code schema | |
- name: 🦾 Compile WASM contract | |
run: cargo wasm --locked | |
env: | |
RUSTFLAGS: "-C link-arg=-s" | |
fmt: | |
name: fmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout sources | |
uses: actions/checkout@v4 | |
- name: ☁️ Install Nightly | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt | |
- name: 📋 Format Check | |
run: cargo +nightly fmt -- --Check | |