Skip to content

Add cancelOvertimeRequest function to allow user cancel invalid request. #127

Add cancelOvertimeRequest function to allow user cancel invalid request.

Add cancelOvertimeRequest function to allow user cancel invalid request. #127

Workflow file for this run

name: Lint On PR
on:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: "true"
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-11-29
override: true
components: rustfmt, clippy
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: "3.x"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install Anvil
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Build
run: cargo build
- name: Format
run: cargo fmt
- name: Lint
run: CARGO_HTTP_MULTIPLEXING=false cargo clippy