Skip to content

feat: run launch-ui in a separate application #34

feat: run launch-ui in a separate application

feat: run launch-ui in a separate application #34

Workflow file for this run

name: "Test"
on:
push:
branches: ["main"]
paths:
- "**.rs"
- "static/**"
- "Cargo.toml"
- "Cargo.lock"
pull_request:
branches: ["main"]
paths:
- "**.rs"
- "static/**"
- "Cargo.toml"
- "Cargo.lock"
types: [ready_for_review, opened, synchronize]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Test:
if: github.event.pull_request.draft == false || github.event_name == 'push'
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable]
steps:
- name: GitHub Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Setup Rust toolchain
uses: hecrj/setup-rust-action@v2
with:
rust-version: ${{ matrix.rust }}
components: rustfmt, clippy
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
- name: Ensure code compiles
run: |
cargo build --all
cargo build --all --release
- name: Run Tests
run: cargo test --all
- name: Run Clippy
run: cargo clippy --all -- -D warnings
- name: Run Rustfmt
run: cargo fmt --all --check