Skip to content

docs: 📝 move dev.md to wiki #9

docs: 📝 move dev.md to wiki

docs: 📝 move dev.md to wiki #9

Workflow file for this run

name: backend ci
on:
push:
branches:
- '*'
paths:
- backend/**
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install ProtoBuffer compiler
run: sudo apt install -y protobuf-compiler
- name: pseudo just prepare
run: mkdir -p backend/config && mkdir -p backend/database
- uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path ./backend/Cargo.toml
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --manifest-path ./backend/Cargo.toml