Skip to content

docs: add badges to the readme docs #15

docs: add badges to the readme docs

docs: add badges to the readme docs #15

Workflow file for this run

name: Quality Check Server
on:
workflow_dispatch:
pull_request:
paths-ignore:
- "docs/**"
- "clients/**"
- "dashboard/**"
push:
branches:
- main
paths-ignore:
- "docs/**"
- "clients/**"
- "dashboard/**"
jobs:
ci:
name: Server CI Checks
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Install Protobuf Compiler
run: |
sudo apt update && sudo apt upgrade -y
sudo apt install -y protobuf-compiler libprotobuf-dev
- name: Run Formatter
run: cargo fmt -- --check
- name: Run Linter
run: cargo clippy -- -D warnings
- name: Run Tests
run: cargo test -- --test-threads 1