Switch to upstream Zola #213
Workflow file for this run
This file contains hidden or 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: Snapshot tests | |
on: | |
pull_request | |
env: | |
# renovate: datasource=github-tags depName=rust lookupName=rust-lang/rust | |
RUST_VERSION: 1.87.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@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8 | |
- name: Install Zola | |
run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/senekor/zola/releases/download/v0.20.1-senekor/zola-installer.sh | sh | |
- 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 |