Merge pull request #122 from Hydrogen-Labs/cleaning-code #162
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: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
release: | |
types: [published] | |
env: | |
RUST_VERSION: 1.80.1 | |
jobs: | |
lint-toml-files: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.RUST_VERSION }} | |
- name: Install Cargo.toml linter | |
uses: baptiste0928/cargo-install@v1 | |
with: | |
crate: cargo-toml-lint | |
version: "0.1" | |
- name: Run Cargo.toml linter | |
run: git ls-files | grep Cargo.toml$ | xargs --verbose -n 1 cargo-toml-lint | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ env.RUST_VERSION }} | |
override: true | |
- name: Init cache | |
uses: Swatinem/rust-cache@v1 | |
- name: Install rustfmt | |
run: rustup component add rustfmt | |
- name: Install wasm target | |
run: rustup target add wasm32-unknown-unknown | |
- name: Install wasm-pack | |
uses: jetli/[email protected] | |
with: | |
version: "latest" | |
- name: Install Fuel toolchain | |
uses: FuelLabs/[email protected] | |
with: | |
toolchain: latest | |
- name: Check Sway formatting | |
run: | | |
forc fmt --check | |
- name: Check Rust formatting | |
run: | | |
cargo fmt --verbose --check | |
- name: Build Sway | |
run: | | |
forc build --terse | |
# Forc test builds anyways, so we don't need to build here | |
# - name: Test Sway | |
# run: | | |
# forc test --terse | |
- name: Run Rust tests | |
run: | | |
cargo test |