lune/.github/workflows/ci.yaml

102 lines
2.1 KiB
YAML
Raw Normal View History

2023-01-19 01:55:27 +00:00
name: CI
2023-01-19 01:47:14 +00:00
on:
push:
2023-05-19 16:03:29 +01:00
pull_request:
workflow_dispatch:
2023-01-19 01:47:14 +00:00
defaults:
run:
shell: bash
2023-01-19 01:47:14 +00:00
jobs:
fmt:
name: Check formatting
runs-on: ubuntu-latest
2023-01-19 01:47:14 +00:00
steps:
- name: Checkout repository
uses: actions/checkout@v4
2023-01-19 01:47:14 +00:00
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
2023-01-19 01:47:14 +00:00
with:
components: rustfmt
2023-01-19 01:47:14 +00:00
- name: Install Tooling
uses: CompeyDev/setup-rokit@v0.1.2
- name: Check Formatting
2023-09-25 20:30:07 +01:00
run: just fmt-check
2023-01-19 01:47:14 +00:00
analyze:
needs: ["fmt"]
name: Analyze and lint Luau files
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Tooling
uses: CompeyDev/setup-rokit@v0.1.2
- name: Analyze
run: just analyze
ci:
needs: ["fmt"]
strategy:
2023-09-11 20:26:31 +01:00
fail-fast: false
matrix:
include:
- name: Windows x86_64
runner-os: windows-latest
cargo-target: x86_64-pc-windows-msvc
- name: Linux x86_64
runner-os: ubuntu-latest
cargo-target: x86_64-unknown-linux-gnu
- name: macOS x86_64
2024-04-15 22:40:58 +01:00
runner-os: macos-13
cargo-target: x86_64-apple-darwin
2024-04-15 22:40:58 +01:00
- name: macOS aarch64
runner-os: macos-14
cargo-target: aarch64-apple-darwin
name: CI - ${{ matrix.name }}
runs-on: ${{ matrix.runner-os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
targets: ${{ matrix.cargo-target }}
2023-01-19 01:55:27 +00:00
- name: Build
run: |
cargo build \
2024-06-05 16:38:19 +01:00
--workspace \
--locked --all-features \
--target ${{ matrix.cargo-target }}
2023-01-19 01:55:27 +00:00
- name: Lint
run: |
cargo clippy \
2024-06-05 16:38:19 +01:00
--workspace \
--locked --all-features \
--target ${{ matrix.cargo-target }}
2023-01-19 01:55:27 +00:00
2023-06-28 11:11:06 +01:00
- name: Test
run: |
cargo test \
2024-06-05 16:38:19 +01:00
--lib --workspace \
--locked --all-features \
--target ${{ matrix.cargo-target }}