-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
600bdf5
commit 2aac4bf
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: Run Makefile with Selenium | ||
|
||
on: | ||
# Schedule to run on the 1st day of each month | ||
schedule: | ||
- cron: '0 0 1 * *' | ||
|
||
# Run on push to master branch | ||
push: | ||
branches: | ||
- main | ||
|
||
# Run on pull requests targeting the master branch | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
# Allows manual triggering of the workflow | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
if: github.ref == 'refs/heads/main' | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.12' | ||
|
||
- name: Install Python dependencies | ||
run: | | ||
python -m venv venv | ||
source venv/bin/activate | ||
pip install --upgrade pip | ||
pip install -r scripts/requirements.txt | ||
- name: Run data generation script | ||
run: | | ||
source venv/bin/activate | ||
python scripts/data_generate.py | ||
- name: Run table generation script | ||
run: | | ||
source venv/bin/activate | ||
python scripts/table_generate.py | ||
- name: Push and Commit | ||
env: | ||
CI_COMMIT_NAME: "Automated commit" | ||
CI_COMMIT_EMAIL: "[email protected]" | ||
CI_COMMIT_MESSAGE: "Automated commit" | ||
run: | | ||
git config --global user.email "${{env.CI_COMMIT_EMAIL}}" | ||
git config --global user.name "${{env.CI_COMMIT_NAME}}" | ||
git diff --quiet && echo "No changes to commit" || ( | ||
git add data/ && | ||
git commit -m "${{env.CI_COMMIT_MESSAGE}}" && | ||
git push origin main # Specify the branch | ||
) |