Skip to content

chore(workflows): install cargo make #380

chore(workflows): install cargo make

chore(workflows): install cargo make #380

Workflow file for this run

on:
push:
branches:
- master
- develop
pull_request:
name: Lints
jobs:
fmt:
name: Format
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@v2
- name: Run cargo fmt
run: cargo make check-fmt
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@v2
- name: Install dependencies
run: cargo +stable make -V || cargo +stable install cargo-make
- name: Run Contract cargo lint checker
run: cargo make check