Skip to content

Commit

Permalink
fixup! Run expensive tests regularly, but not on every pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
hrxi committed Jan 29, 2024
1 parent 7c70e42 commit 761560b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/expensive_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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

0 comments on commit 761560b

Please sign in to comment.