fix(payer): change to optional return parameters #54
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
name: "[Lint] Check code" | |
on: [push] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: Check code | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Clippy | |
run: cargo clippy | |
format: | |
runs-on: ubuntu-latest | |
name: Check formatting | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run cargo format check | |
run: cargo fmt --check |