fix: install forc in other jobs #8
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: Rust CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup target add wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install forc | |
run: | | |
curl https://install.fuel.network | sh | |
- name: Build | |
run: cargo build --verbose --all-features | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
rustup target add wasm32-unknown-unknown | |
rustup toolchain install nightly | |
rustup component add rustfmt --toolchain nightly | |
- name: Install forc | |
run: | | |
curl https://install.fuel.network | sh | |
- uses: Swatinem/rust-cache@v2 | |
- name: Clippy | |
run: cargo clippy --all --all-features | |
- name: Formatting | |
run: cargo +nightly fmt --all -- --check | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install nextest | |
uses: taiki-e/install-action@nextest | |
- name: Install forc | |
run: | | |
curl https://install.fuel.network | sh | |
- uses: actions/checkout@v4 | |
- run: rustup target add wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
- name: Run tests | |
run: cargo nextest run |