Skip to content

fix: gmp dependency in workflow #704

fix: gmp dependency in workflow

fix: gmp dependency in workflow #704

Workflow file for this run

name: Formatting
on:
- pull_request
jobs:
format:
runs-on: macos-13
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: recursive
- uses: webfactory/ssh-agent@v0.5.1
with:
ssh-private-key: ${{ secrets.CICD_RSA_KEY }}
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.58.1
override: true
components: rustfmt, clippy
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check