Compare commits
1 commit
112e563721
...
706f0deb64
| Author | SHA1 | Date | |
|---|---|---|---|
| 706f0deb64 |
1 changed files with 5 additions and 0 deletions
|
|
@ -28,20 +28,25 @@ jobs:
|
||||||
workspaces: "backend"
|
workspaces: "backend"
|
||||||
- name: "Check Format"
|
- name: "Check Format"
|
||||||
run: cargo fmt --check
|
run: cargo fmt --check
|
||||||
|
working-directory: backend
|
||||||
- name: "Build"
|
- name: "Build"
|
||||||
run: |
|
run: |
|
||||||
# hurl needs libxml needs libclang
|
# hurl needs libxml needs libclang
|
||||||
apt update && apt install -y clang
|
apt update && apt install -y clang
|
||||||
cargo build --tests
|
cargo build --tests
|
||||||
|
working-directory: backend
|
||||||
- name: "Lint"
|
- name: "Lint"
|
||||||
run: |
|
run: |
|
||||||
rustup component add clippy
|
rustup component add clippy
|
||||||
cargo clippy
|
cargo clippy
|
||||||
|
working-directory: backend
|
||||||
- name: "Unit Tests"
|
- name: "Unit Tests"
|
||||||
run: |
|
run: |
|
||||||
cargo test -- --skip api
|
cargo test -- --skip api
|
||||||
|
working-directory: backend
|
||||||
- name: "Integration Tests"
|
- name: "Integration Tests"
|
||||||
run: cargo test --test api
|
run: cargo test --test api
|
||||||
|
working-directory: backend
|
||||||
|
|
||||||
check-frontend:
|
check-frontend:
|
||||||
name: Frontend
|
name: Frontend
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue