Fix base URL for GitHub Pages #264
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: ci | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
components: clippy | |
profile: minimal | |
toolchain: 1.78.0 | |
- name: Install Rust (nightly) | |
uses: actions-rs/toolchain@v1 | |
with: | |
components: rustfmt | |
profile: minimal | |
toolchain: nightly | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
package_json_file: playground/package.json | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
cache: pnpm | |
cache-dependency-path: playground/pnpm-lock.yaml | |
node-version: 18 | |
- name: Setup Rust cache | |
uses: Swatinem/rust-cache@v1 | |
- name: Install Task | |
uses: arduino/setup-task@v2 | |
with: | |
version: 3.x | |
- name: Run linters | |
run: task lint | |
test-miri: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
partition: [1, 2, 3, 4, 5, 6, 7, 8] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
components: miri | |
profile: minimal | |
toolchain: nightly | |
- name: Setup Rust cache | |
uses: Swatinem/rust-cache@v1 | |
- name: Install cargo-nextest | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-nextest | |
- name: Install Task | |
uses: arduino/setup-task@v2 | |
- name: Run tests | |
run: task test-miri -- --no-fail-fast --partition=count:${{ matrix.partition }}/8 --test-threads=num-cpus | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
- name: Setup Rust cache | |
uses: Swatinem/rust-cache@v1 | |
- name: Install cargo-nextest | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-nextest | |
- name: Install Task | |
uses: arduino/setup-task@v2 | |
- name: Run tests | |
run: task test -- --no-fail-fast |