This repository has been archived by the owner on Jan 2, 2025. It is now read-only.
Windows builds in CI #1878
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: Server Unit Tests | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
- "flake.*" | |
- "server/**" | |
- ".github/workflows/server**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
clippy-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
lfs: true | |
- name: Install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: 1.73.0 | |
components: rustfmt, clippy | |
# https://github.com/actions/cache/blob/main/examples.md#rust---cargo | |
- name: Set up cargo cache | |
uses: actions/cache@v3 | |
continue-on-error: false | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: ${{ runner.os }}-cargo- | |
- name: Rustfmt | |
run: cargo --locked fmt -p bleep -- --check | |
- name: Clippy | |
run: cargo --locked clippy -p bleep --features=ee-pro,ee-cloud | |
- name: Tests | |
run: cargo --locked test -p bleep --release --features=ee-pro,ee-cloud |