Skip to content

ci: add Semgrep OSS scanning workflow #21

ci: add Semgrep OSS scanning workflow

ci: add Semgrep OSS scanning workflow #21

Workflow file for this run

name: Linters
on: [push, pull_request]
jobs:
rustfmt:
name: Formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust
run: |
rustup update stable
rustup default stable
rustup component add rustfmt
- name: Check Formatting
run: cargo fmt --all -- --check