lune/.github/workflows/ci.yaml

86 lines
1.8 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-03-22 13:23:08 +00:00
with:
submodules: true
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
2023-09-25 20:30:07 +01:00
- name: Install Just
uses: extractions/setup-just@v1
- name: Install Tooling
uses: ok-nick/setup-aftman@v0.4.2
- name: Check Formatting
2023-09-25 20:30:07 +01:00
run: just fmt-check
2023-01-19 01:47:14 +00:00
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
runner-os: macos-latest
cargo-target: x86_64-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 \
--locked --all-features \
--target ${{ matrix.cargo-target }}
2023-01-19 01:55:27 +00:00
- name: Lint
run: |
cargo clippy \
--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 \
--locked --all-features \
--target ${{ matrix.cargo-target }}