Skip to content

Commit 079d3b8

Browse files
authored
Create GH Actions CI pipeline (#3)
The workflow builds the Docker image.
1 parent 9d60588 commit 079d3b8

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/docker-image.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Docker Image CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
7+
build:
8+
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Build the Docker image
14+
run: ./docker-build.sh

0 commit comments

Comments
 (0)