Add additional Nginx checks (#269)
This commit is contained in:
parent
59d0efa149
commit
b7eb27ab5f
|
@ -5,6 +5,17 @@ name: server
|
|||
on: [push, pull_request]
|
||||
|
||||
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:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
Loading…
Reference in New Issue