Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

new: Add pre-publish validation and build steps. #78

new: Add pre-publish validation and build steps.

new: Add pre-publish validation and build steps. #78

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
format:
name: Format
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v0
with:
components: rustfmt
- run: cargo fmt --all --check
lint:
name: Lint
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v0
with:
components: clippy
- run: cargo clippy --workspace --all-targets
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: moonrepo/setup-rust@v0
with:
bins: cargo-nextest
cache: false
- run: cargo nextest run --workspace