Skip to content

Commit 9bfb648

Browse files
committed
Added a daily CI pipeline that ensures that our docker image can be built even when base images change
1 parent 7c04025 commit 9bfb648

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/docker-build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
2+
3+
name: "Simulate Docker Build"
4+
5+
on:
6+
pull_request:
7+
schedule:
8+
- cron: '0 2 * * *' # run daily
9+
10+
jobs:
11+
docker-build:
12+
name: "Simulate Docker Build"
13+
14+
runs-on: ${{ matrix.operating-system }}
15+
16+
steps:
17+
- name: "Checkout"
18+
uses: "actions/checkout@v2"
19+
20+
- name: "Docker Build"
21+
run: "docker build ."

0 commit comments

Comments
 (0)