Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run build
run: cargo build --all --verbose
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run tests
run: cargo test --all --verbose
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run Rustfmt
run: cargo fmt --all -- --check
- name: Run Clippy
run: cargo clippy --all --verbose
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run dependency security audit
run: cargo install cargo-audit && cargo --verbose audit
- name: Install cargo-outdated
run: cargo install cargo-outdated
- name: Run depedency version audit
run: cargo outdated --root-deps-only --verbose --exit-code 1