Skip to content

Commit eda6118

Browse files
authored
Add a scheduled trigger to the workflow (#2130)
The purpose of this change is to detect early when a version change has broken our build. Now we only find this out when we create a PR for a new branch. This change runs the workflows daily. After testing we can reduce the frequency.
1 parent e767481 commit eda6118

8 files changed

+16
-0
lines changed

.github/workflows/deploy-docs.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Publish Docs
22

33
on:
4+
schedule:
5+
- cron: "0 13 * * *"
46
pull_request:
57
push:
68
branches:

.github/workflows/pypi.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Publish to PyPI
22

33
on:
4+
schedule:
5+
- cron: "0 13 * * *"
46
pull_request:
57
push:
68
branches:

.github/workflows/test_code.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Code Tests
22

33
on:
4+
schedule:
5+
- cron: "0 13 * * *"
46
pull_request:
57
push:
68
branches:

.github/workflows/test_geopandas.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Geopandas tests
22

33
on:
4+
schedule:
5+
- cron: "0 13 * * *"
46
pull_request:
57
push:
68
branches:

.github/workflows/test_latest_branca.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Code Tests with Latest branca
22

33
on:
4+
schedule:
5+
- cron: "0 13 * * *"
46
pull_request:
57
push:
68
branches:

.github/workflows/test_mypy.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Mypy type hint checks
22

33
on:
4+
schedule:
5+
- cron: "0 13 * * *"
46
pull_request:
57
push:
68
branches:

.github/workflows/test_selenium.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Selenium Tests
22

33
on:
4+
schedule:
5+
- cron: "0 13 * * *"
46
pull_request:
57
push:
68
branches:

.github/workflows/test_streamlit_folium.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Run Streamlit Folium Tests
22

33
on:
4+
schedule:
5+
- cron: "0 13 * * *"
46
pull_request:
57
push:
68
branches:

0 commit comments

Comments
 (0)