feat: added GitHub workflow that runs daily or on manual trigger and spits out a downloadable file with the updates applied.

This commit is contained in:
Sebastian Kootz 2025-12-09 18:22:02 +01:00
parent cd86627d81
commit 8eef92aa46

30
.github/workflows/verify.yml vendored Normal file
View file

@ -0,0 +1,30 @@
name: Verify URLs
on:
workflow_dispatch: # Manual trigger
schedule:
- cron: "0 0 * * *" # Every day at 00:00 UTC
jobs:
verify:
runs-on: ubuntu-latest
container:
image: rust:1.91-slim
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build Rust "Verify" Program
working-directory: verify
run: cargo build
- name: Execute Rust "Verify" Program
working-directory: verify
run: cargo run
- name: Upload Updated "README.md" file
uses: actions/upload-artifact@v4
with:
name: verification-results
path: README.md