Nightly Run Integration Tests #12
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: "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 |