fixup! Run expensive tests regularly, but not on every pull request #1
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
name: Expensive tests | |
on: | |
#schedule: | |
# - cron: '0 */2 * * *' | |
push: | |
branches: | |
- hrxi/minor_fixes51 | |
workflow_dispatch: | |
jobs: | |
expensive-tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: llvm-tools-preview | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install cargo-nextest | |
run: curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin | |
- name: Run tests | |
run: cargo nextest run --features=expensive-tests,nimiq-zkp-component/test-prover |