Snapshot parity test #3
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: Snapshot parity test | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * 0" # Runs at 00:00, only on Sunday | |
jobs: | |
snapshot-parity: | |
name: Snapshot parity test | |
runs-on: buildjet-4vcpu-ubuntu-2204 | |
steps: | |
- name: Checkout Sources | |
uses: actions/checkout@v4 | |
- name: Run snapshot parity test | |
run: ./scripts/tests/snapshot_parity/setup.sh | |
timeout-minutes: 60 | |
- name: Dump docker logs | |
if: always() | |
uses: jwalton/gh-docker-logs@v2 | |
- uses: JasonEtco/create-an-issue@v2 | |
if: failure() | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
filename: .github/SNAPSHOT_PARITY_ISSUE_TEMPLATE.md |