Fix streak_ends
and notify user_index
(#6002)
#302
Workflow file for this run
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
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+-*' | |
- '!*-website' | |
name: Run pre-release tests | |
jobs: | |
run_tests: | |
name: Run pre-release tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Wait for wasms to be built | |
uses: lewagon/[email protected] | |
with: | |
ref: ${{ github.sha }} | |
check-name: "Push canister wasms" | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Download canister wasms | |
run: ./scripts/download-all-canister-wasms.sh $GITHUB_REF_NAME | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.79.0 | |
override: true | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "build-debug" | |
save-if: "false" | |
- name: Run integration tests | |
run: ./scripts/run-integration-tests.sh local |