Skip to content

chore(deps): bump JamesIves/github-pages-deploy-action from 4.5.0 to 4.6.0 #340

chore(deps): bump JamesIves/github-pages-deploy-action from 4.5.0 to 4.6.0

chore(deps): bump JamesIves/github-pages-deploy-action from 4.5.0 to 4.6.0 #340

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
merge_group:
types: [checks_requested]
push:
branches: [master]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
fail-fast: false
matrix:
# prettier-ignore
target:
- { name: Linux, os: ubuntu-latest, triple: x86_64-unknown-linux-gnu }
- { name: macOS, os: macos-latest, triple: x86_64-apple-darwin }
- { name: Windows, os: windows-latest, triple: x86_64-pc-windows-msvc }
version:
- { name: msrv, version: 1.68.0 }
- { name: stable, version: stable }
name: ${{ matrix.target.name }} / ${{ matrix.version.name }}
runs-on: ${{ matrix.target.os }}
steps:
- uses: actions/checkout@v4
- name: Install Rust (${{ matrix.version.name }})
uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
with:
toolchain: ${{ matrix.version.version }}
- name: Install cargo-hack
uses: taiki-e/install-action@v2.13.5
with:
tool: cargo-hack
- name: Install cargo-nextest
uses: taiki-e/install-action@v2.13.5
with:
tool: cargo-nextest
- name: Check minimal
run: cargo hack --clean-per-run check --workspace --no-default-features
- name: Tests
run: cargo nextest run --workspace --all-features --no-fail-fast
timeout-minutes: 10
doc_test:
name: doctest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust (nightly)
uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
with:
toolchain: nightly
- name: Test documentation
run: cargo test --workspace --doc --all-features --no-fail-fast
timeout-minutes: 10