Skip to content

Nightly Run Integration Tests #12

Nightly Run Integration Tests

Nightly Run Integration Tests #12

name: "Nightly Run Integration Tests"
on:
workflow_dispatch:
schedule:
- cron: '0 9 * * *' # This runs the workflow every day at 9:00 AM UTC
jobs:
nightly-run:
runs-on: runs-on,runner=2cpu-linux-x64,run-id=${{ github.run_id }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Dependencies and Run Linter
uses: ./.github/actions/dep_install_and_lint
with:
working-directory: rust
- name: Run Integration Tests
run: cargo test --manifest-path integration-tests/Cargo.toml
working-directory: rust