Skip to content

Adding semgrep yaml file #18

Adding semgrep yaml file

Adding semgrep yaml file #18

Workflow file for this run

name: Cargo
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build
- name: Check formatting
run: cargo fmt --check
- name: Run Clippy
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test