Daily workflow for various checks #118
This file contains hidden or 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: Daily workflow for various checks | |
on: | |
schedule: | |
- cron: '0 0 * * *' # This cron expression means "run at midnight UTC every day" | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt -y update && sudo apt -y install gcc cmake libgmp-dev scala | |
- name: Check namespace | |
run: scripts/check_namespace.sh |