We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f779c8f commit 58929f2Copy full SHA for 58929f2
.github/workflows/build.yml
@@ -7,7 +7,12 @@ jobs:
7
steps:
8
- name: Checkout
9
uses: actions/checkout@master
10
- - name: Build Image
11
- run: docker build --target test .
+ - name: Test
+ run: |
12
+ docker build --target test -t lua-resty-netacea-test .
13
+ docker run --rm lua-resty-netacea-test
14
- name: Lint
- run: docker build --target lint .
15
16
+ docker build --target lint -t lua-resty-netacea-lint .
17
+ docker run --rm lua-resty-netacea-lint
18
+
0 commit comments