Add additional Nginx checks (#269)
This commit is contained in:
parent
59d0efa149
commit
b7eb27ab5f
|
@ -5,6 +5,17 @@ name: server
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2.3.4
|
||||||
|
|
||||||
|
- name: Check configuration
|
||||||
|
uses: docker://nginx:latest
|
||||||
|
with:
|
||||||
|
entrypoint: nginx
|
||||||
|
args: -c /github/workspace/nginx.conf -t
|
||||||
|
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in New Issue