Skip to content

Included extra docs and fixed routes #3

Included extra docs and fixed routes

Included extra docs and fixed routes #3

Workflow file for this run

name: Rust
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
check:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- name: Check styles
run: cargo check --verbose
test:
runs-on: ubuntu-latest
needs: [build, check]
steps:
- uses: actions/checkout@v3
- name: Run tests
run: cargo test --verbose