Skip to content

fix raffleDenomSplit #23

fix raffleDenomSplit

fix raffleDenomSplit #23

Workflow file for this run

name: Rust Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
- name: Run Rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check