0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 18:26:15 +01:00
posthog/.github/workflows/rust.yml

101 lines
2.1 KiB
YAML
Raw Normal View History

2023-11-27 15:44:09 +01:00
name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- uses: actions/checkout@v3
- name: Install rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}
- name: Run cargo build
2023-11-29 18:52:12 +01:00
run: cargo build --all --locked --release
2023-11-27 15:44:09 +01:00
test:
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- uses: actions/checkout@v3
2023-11-29 18:52:12 +01:00
- name: Install rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: Stop/Start stack with Docker Compose
shell: bash
run: |
2023-11-30 12:20:38 +01:00
docker compose -f docker-compose.yml down
docker compose -f docker-compose.yml up db echo_server -d --wait
docker compose -f docker-compose.yml up setup_test_db
2023-11-29 18:52:12 +01:00
2023-11-27 15:44:09 +01:00
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${ runner.os }-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
- name: Run cargo test
run: cargo test --all-features
clippy:
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- uses: actions/checkout@v3
- name: Install latest rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
- name: Run clippy
run: cargo clippy -- -D warnings
2023-11-29 18:52:12 +01:00
2023-11-27 15:44:09 +01:00
format:
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- uses: actions/checkout@v3
- name: Install latest rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt
- name: Format
run: cargo fmt -- --check