Skip to content

Register static variables #31

Register static variables

Register static variables #31

Workflow file for this run

name: XCP_lite Default
on:
workflow_dispatch:
push:
branches: ["**"]
tags: ["**"]
concurrency:
group: ${{ (github.ref == 'refs/heads/main') && 'main' || format('{0}-{1}', github.workflow, github.ref) }} # concurrency does not include main branch
cancel-in-progress: true
jobs:
format:
name: Format
runs-on: [ubuntu-22.04]
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v1
with:
components: rustfmt
- name: Check formatting
run: cargo fmt --all --check
lint:
name: Lint
runs-on: [ubuntu-22.04]
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v1
with:
bins: cargo-make
components: clippy
- name: Run linter
run: cargo clippy
build:
name: Build
runs-on: ${{ matrix.os }}
needs: [format, lint]
strategy:
matrix:
os: [ubuntu-22.04, macos-13, macos-14, windows-2022]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v1
with:
components: rustfmt
- name: Build binary
run: |
cargo build --verbose
test:
name: Test
runs-on: ${{ matrix.os }}
needs: [build]
strategy:
matrix:
os: [ubuntu-22.04, macos-13, macos-14, windows-2022]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v1
with:
bins: cargo-make, cargo-nextest
- name: Run tests
run: cargo test --verbose -- --test-threads=1