Refactor GitHub Actions workflows to remove pyproject.toml references and update cron schedules to run every Monday #33
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: 09pwnmodel2 format | |
on: | |
push: | |
paths: | |
- "modelscripts/09pwnmodel2/**" | |
- ".github/workflows/format_notebooks.yml" | |
- ".github/workflows/Format_09pwnmodel2.yml" | |
branches: | |
- main | |
pull_request: | |
paths: | |
- "modelscripts/09pwnmodel2/**" | |
- ".github/workflows/format_notebooks.yml" | |
- ".github/workflows/Format_09pwnmodel2.yml" | |
branches: | |
- main | |
schedule: | |
# To check against updated versions of dependencies | |
- cron: "0 9 * * 1" # Run every Monday at 9:00 UTC | |
jobs: | |
test-notebooks: | |
uses: ./.github/workflows/format_notebooks.yml | |
with: | |
project-folder: "09pwnmodel2" | |
secrets: inherit |