Skip to content

chore(deps): update taiki-e/install-action digest to cbef870 (#239) #565

chore(deps): update taiki-e/install-action digest to cbef870 (#239)

chore(deps): update taiki-e/install-action digest to cbef870 (#239) #565

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: CI
env:
RUSTFLAGS: -D warnings
CARGO_TERM_COLOR: always
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2
- name: Lint (clippy)
run: cargo clippy --all-features --all-targets
- name: Lint (rustfmt)
run: cargo xfmt --check
- name: Install cargo readme
uses: taiki-e/install-action@cbef870e2bdcba92d24aaa2dd84ebeeca67b59a0 # v2
with:
tool: cargo-readme
- name: Run cargo readme
run: ./scripts/regenerate-readmes.sh
- name: Check for differences
run: git diff --exit-code
build-rustdoc:
name: Build documentation
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
fail-fast: false
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2
- name: Build rustdoc
run: cargo doc --all-features
build:
name: Build and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
rust-version: ["1.72", stable]
fail-fast: false
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust-version }}
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2
with:
key: ${{ matrix.rust-version }}
- name: Build
run: cargo build
- name: Install latest nextest release
uses: taiki-e/install-action@nextest
- name: Build datatest-stable
run: cargo build
- name: Run tests
run: cargo nextest run
- name: Run tests with cargo test
run: cargo test
# Remove Cargo.lock to ensure that building with the latest versions works on stable.
- name: Remove Cargo.lock and rebuild on stable
if: matrix.rust-version == 'stable'
run: rm Cargo.lock && cargo build
- name: Run tests on stable
if: matrix.rust-version == 'stable'
run: cargo nextest run
- name: Run tests with cargo test on stable
if: matrix.rust-version == 'stable'
run: cargo test