Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

feat: Multimint support #10

feat: Multimint support

feat: Multimint support #10

Workflow file for this run

name: Tests
on:
pull_request:
jobs:
rust_tests:
name: Rust Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy, rustfmt
override: true
profile: minimal
- name: Setup trunk
uses: jetli/[email protected]
with:
version: 'latest'
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: cargo-${{ runner.os }}-rust-tests-${{ hashFiles('**/Cargo.toml') }}
restore-keys: |
cargo-${{ runner.os }}-rust-tests-
cargo-${{ runner.os }}-
- name: Check formatting
run: cargo fmt --check
- name: Check clippy
run: cargo clippy