Skip to content

Commit 58929f2

Browse files
committed
Add in run step
1 parent f779c8f commit 58929f2

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ jobs:
77
steps:
88
- name: Checkout
99
uses: actions/checkout@master
10-
- name: Build Image
11-
run: docker build --target test .
10+
- name: Test
11+
run: |
12+
docker build --target test -t lua-resty-netacea-test .
13+
docker run --rm lua-resty-netacea-test
1214
- name: Lint
13-
run: docker build --target lint .
15+
run: |
16+
docker build --target lint -t lua-resty-netacea-lint .
17+
docker run --rm lua-resty-netacea-lint
18+

0 commit comments

Comments
 (0)