-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (43 loc) · 1.05 KB
/
backend.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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