Fix: payable finish_deposit #495
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 |