mirror of
https://github.com/j178/prek.git
synced 2026-04-25 02:11:36 +02:00
ca12c55c1b
* . * Support `nodejs` language * add run * . * Fix * Improve * Test * add test * Debug * Fix npm name * oh my, windows * Fix * Fix
190 lines
4.7 KiB
YAML
190 lines
4.7 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
paths-ignore:
|
|
- "README.md"
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
typos:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: crate-ci/typos@master
|
|
|
|
lint:
|
|
name: "lint"
|
|
timeout-minutes: 30
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: "Install Rustfmt"
|
|
run: rustup component add rustfmt
|
|
- name: "rustfmt"
|
|
run: cargo fmt --all --check
|
|
|
|
cargo-clippy:
|
|
name: "cargo clippy | ubuntu"
|
|
timeout-minutes: 10
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: rui314/setup-mold@v1
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- name: "Install Rust toolchain"
|
|
run: rustup component add clippy
|
|
- name: "Clippy"
|
|
run: cargo clippy --workspace --all-targets --all-features --locked -- -D warnings
|
|
|
|
cargo-clippy-windows:
|
|
timeout-minutes: 15
|
|
runs-on: windows-latest
|
|
name: "cargo clippy | windows"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Create Dev Drive
|
|
run: ${{ github.workspace }}/.github/workflows/setup-dev-drive.ps1
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- name: "Install Rust toolchain"
|
|
run: rustup component add clippy
|
|
|
|
- name: "Clippy"
|
|
run: cargo clippy --workspace --all-targets --all-features --locked -- -D warnings
|
|
|
|
cargo-shear:
|
|
name: "cargo shear"
|
|
timeout-minutes: 10
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: cargo-bins/cargo-binstall@main
|
|
- run: cargo binstall --no-confirm cargo-shear
|
|
- run: cargo shear
|
|
|
|
cargo-test-linux:
|
|
timeout-minutes: 10
|
|
runs-on: ubuntu-latest
|
|
name: "cargo test | ubuntu"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: rui314/setup-mold@v1
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- name: "Install Rust toolchain"
|
|
run: rustup show
|
|
|
|
- name: "Install cargo nextest"
|
|
uses: taiki-e/install-action@v2
|
|
with:
|
|
tool: cargo-nextest
|
|
|
|
- name: "Install uv"
|
|
uses: astral-sh/setup-uv@v6
|
|
|
|
- name: "Install Python"
|
|
run: uv python install --no-bin
|
|
|
|
- name: "Install Node.js"
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '19.9.0'
|
|
|
|
- name: "Cargo test"
|
|
run: |
|
|
cargo nextest show-config test-groups
|
|
cargo nextest run \
|
|
--workspace \
|
|
--status-level skip --failure-output immediate --no-fail-fast -j 8 --final-status-level slow
|
|
|
|
cargo-test-macos:
|
|
timeout-minutes: 10
|
|
runs-on: macos-latest
|
|
name: "cargo test | macos"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: rui314/setup-mold@v1
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- name: "Install Rust toolchain"
|
|
run: rustup show
|
|
|
|
- name: "Install cargo nextest"
|
|
uses: taiki-e/install-action@v2
|
|
with:
|
|
tool: cargo-nextest
|
|
|
|
- name: "Install uv"
|
|
uses: astral-sh/setup-uv@v6
|
|
|
|
- name: "Install Python"
|
|
run: uv python install --no-bin
|
|
|
|
- name: "Install Node.js"
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '19.9.0'
|
|
|
|
- name: "Cargo test"
|
|
run: |
|
|
cargo nextest show-config test-groups
|
|
cargo nextest run \
|
|
--workspace \
|
|
--status-level skip --failure-output immediate --no-fail-fast -j 8 --final-status-level slow
|
|
|
|
cargo-test-windows:
|
|
timeout-minutes: 15
|
|
runs-on: windows-latest
|
|
name: "cargo test | windows"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Create Dev Drive
|
|
run: ${{ github.workspace }}/.github/workflows/setup-dev-drive.ps1
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- name: "Install Rust toolchain"
|
|
run: rustup show
|
|
|
|
- name: "Install cargo nextest"
|
|
uses: taiki-e/install-action@v2
|
|
with:
|
|
tool: cargo-nextest
|
|
|
|
- name: "Install uv"
|
|
uses: astral-sh/setup-uv@v6
|
|
with:
|
|
cache-local-path: ${{ env.DEV_DRIVE }}/uv-cache
|
|
|
|
- name: "Install Python"
|
|
run: uv python install --no-bin
|
|
|
|
- name: "Install Node.js"
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '19.9.0'
|
|
|
|
- name: "Find node and npm versions"
|
|
run: |
|
|
Get-Command node -All
|
|
Get-Command npm -All
|
|
shell: pwsh
|
|
|
|
- name: "Cargo test"
|
|
run: |
|
|
cargo nextest show-config test-groups
|
|
cargo nextest run --workspace --status-level skip --failure-output immediate --no-fail-fast -j 8 --final-status-level slow
|