Skip to content

Windows builds in CI #1876

Windows builds in CI

Windows builds in CI #1876

Workflow file for this run

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