chore: add xlm version to log output #25
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: "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 |