feat: adding prometheus metrics and tracing #196
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["**"] | |
types: [opened, synchronize] | |
paths: | |
- "server/**" | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
name: Server Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Setup rust cache | |
uses: Swatinem/[email protected] | |
with: | |
shared-key: whooosh | |
workspaces: server | |
- name: Run cargo check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --manifest-path server/Cargo.toml | |
test: | |
name: Server Test Suite | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Setup rust cache | |
uses: Swatinem/[email protected] | |
with: | |
shared-key: whooosh | |
workspaces: | | |
server/api -> ../target | |
server/core -> ../target | |
- name: Run api tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --manifest-path server/api/Cargo.toml | |
- name: Run core tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --manifest-path server/core/Cargo.toml | |
lints: | |
name: Server Lints | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
components: rustfmt, clippy | |
- name: Setup rust cache | |
uses: Swatinem/[email protected] | |
with: | |
shared-key: whooosh | |
workspaces: server | |
- name: Run cargo fmt | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all --manifest-path server/Cargo.toml -- --check | |
- name: Run cargo clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --manifest-path server/Cargo.toml -- -D warnings |