2023-05-23 03:12:14 +00:00
|
|
|
name: Server
|
2023-05-22 23:01:40 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build
|
|
|
|
working-directory: server
|
|
|
|
run: cargo build --verbose
|
2023-05-23 03:12:14 +00:00
|
|
|
- name: Test
|
2023-05-22 23:01:40 +00:00
|
|
|
working-directory: server
|
|
|
|
run: cargo test --verbose
|