Skip to content

Simplify installation of zola #383

Simplify installation of zola

Simplify installation of zola #383

Workflow file for this run

name: Snapshot tests
on:
pull_request
env:
# renovate: datasource=github-tags depName=rust lookupName=rust-lang/rust
RUST_VERSION: 1.88.0
jobs:
snapshot-tests:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.body, 'RUN_SNAPSHOT_TESTS')
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- run: rustup override set ${{ env.RUST_VERSION }}
- uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2.8.0
- name: Install Zola
run: cargo install --locked --git https://github.com/getzola/zola --rev 45d3f8d6285f0b47013c5fa31eb405332118af8b
- run: git fetch --depth 2
- run: git checkout origin/master
- name: Generate good snapshots
run: INSTA_OUTPUT=none INSTA_UPDATE=always cargo test -p snapshot -- --include-ignored
- run: git checkout $GITHUB_SHA # merge of master+branch
- run: INSTA_OUTPUT=none INSTA_UPDATE=no cargo test -p snapshot -- --include-ignored