Skip to content

Build contract in docker (#89) #487

Build contract in docker (#89)

Build contract in docker (#89) #487

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@v4
- name: Install cargo-make
run: cargo make -V || cargo install cargo-make
- name: Run cargo fmt
run: cargo make check-fmt
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@v4
- name: Install cargo-make
run: cargo make -V || cargo install cargo-make
- name: Run Contract cargo lint checker
run: cargo make check