Skip to content

Hooking DB

Hooking DB #47

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
env:
RUSTFLAGS: '-D warnings'
steps:
- uses: actions/checkout@v2
- name: Install rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Check Format
run: cargo fmt -- --check
- name: Check Clippy
run: cargo clippy
- name: Run Tests
run: cargo test --all