Nightly Build #261
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
## DO NOT EDIT! | |
# This file was provisioned by OpenTofu | |
# File origin: https://github.com/aetheric-oss/tofu-github/tree/main/src/modules/vars/templates/rust/all/.github/workflows/nightly.yml | |
on: | |
schedule: | |
- cron: '0 4 * * *' # run at 4 AM UTC | |
name: Nightly Build | |
env: | |
TERM: xterm | |
jobs: | |
# Will catch broken dependencies | |
build_and_test_debug: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: develop | |
- name: Build | |
run: make rust-build | |
- name: Test | |
run: make rust-test | |
# Check if any URLs no longer work | |
md-test: | |
name: Markdown Broken Link Checker | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: develop | |
- run: make md-test-links |