feat(packages/tuono-(router|fs-router-vite-plugin)): replace `__route… #645
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust CI | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- '.github/**' | |
- 'Cargo.toml' | |
- 'crates/**' | |
pull_request: | |
paths: | |
- '.github/**' | |
- 'Cargo.toml' | |
- 'crates/**' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
name: Build and test crates on ${{ matrix.os }} with rust ${{ matrix.toolchain }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: | |
- 'ubuntu-latest' | |
- 'macos-latest' | |
- 'windows-latest' | |
toolchain: | |
- 'stable' | |
# Test `beta` and `nightly` toolchains only on `ubuntu` | |
# https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow#expanding-or-adding-matrix-configurations | |
include: | |
- toolchain: 'beta' | |
os: 'ubuntu-latest' | |
- toolchain: 'nightly' | |
os: 'ubuntu-latest' | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup rust toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- run: cargo build --verbose | |
- run: cargo test --verbose | |
lint_and_fmt: | |
name: Check format and lint rust crates | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup rust toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- run: cargo fmt --all -- --check | |
- run: cargo clippy -- -D warnings |