Skip to content

invoke_contract

invoke_contract #25

Workflow file for this run

name: General Rust
on:
push:
branches:
- "main"
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Rust
run: rustup update
- name: Install Rust
run: rustup install 1.69 --profile minimal
- name: Install Rustfmt
run: rustup component add rustfmt --toolchain 1.69-x86_64-unknown-linux-gnu
- name: Run cargo fmt
run: make fmt-rust-check