Add with_template_fn
to Renderer
#177
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: build | |
on: [push, pull_request] | |
jobs: | |
# --------------------------------------------------------------------------- | |
# Lint | |
# --------------------------------------------------------------------------- | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: [stable, beta, nightly] | |
env: | |
RUSTFLAGS: --deny warnings | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: clippy, rustfmt | |
- name: Rustfmt | |
run: cargo fmt -- --check | |
- name: Clippy | |
continue-on-error: ${{ matrix.toolchain == 'nightly' }} | |
run: cargo clippy --workspace --all-targets | |
- name: Check (internal debug) | |
run: cargo check | |
env: | |
RUSTFLAGS: --deny warnings --cfg internal_debug | |
# --------------------------------------------------------------------------- | |
# Test | |
# --------------------------------------------------------------------------- | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Test | |
run: cargo test --workspace | |
- name: Test (no default features) | |
run: cargo test --lib --tests --no-default-features | |
- name: Test (filters) | |
run: cargo test --lib --tests --no-default-features --features filters | |
- name: Test (serde) | |
run: cargo test --lib --tests --no-default-features --features serde | |
- name: Test (unicode) | |
run: cargo test --lib --tests --no-default-features --features unicode | |
- name: Test (filters,serde) | |
run: cargo test --lib --tests --no-default-features --features filters,serde | |
- name: Test (serde,unicode) | |
run: cargo test --lib --tests --no-default-features --features serde,unicode | |
- name: Test (filters,unicode) | |
run: cargo test --lib --tests --no-default-features --features filters,unicode | |
# --------------------------------------------------------------------------- | |
# MSRV | |
# --------------------------------------------------------------------------- | |
msrv: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/[email protected] | |
- name: Check (no filters) | |
run: cargo check --no-default-features --features serde,unicode | |
- uses: dtolnay/[email protected] | |
- name: Test | |
run: cargo test | |
env: | |
RUSTFLAGS: --deny warnings | |
# --------------------------------------------------------------------------- | |
# Check README | |
# --------------------------------------------------------------------------- | |
readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Install cargo-onedoc | |
run: cargo install cargo-onedoc --locked | |
- name: Check README | |
run: cargo onedoc --check | |
# --------------------------------------------------------------------------- | |
# Check version against tag | |
# --------------------------------------------------------------------------- | |
check-version: | |
needs: [lint, test, msrv, readme] | |
if: startsWith(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Calculate version from tag | |
id: version | |
run: echo "::set-output name=value::${GITHUB_REF#refs/tags/}" | |
- name: Check tag against package version | |
run: grep '^version = "${{ steps.version.outputs.value }}"$' Cargo.toml | |
# --------------------------------------------------------------------------- | |
# Publish to Crates.io | |
# --------------------------------------------------------------------------- | |
publish: | |
needs: check-version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Publish | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }} | |
run: cargo publish |