Skip to content

nginx tests

nginx tests #8

Workflow file for this run

name: lua ca bouncer nginx test
on:
push:
branches:
- main
- releases/**
pull_request:
branches:
- main
- releases/**
jobs:
tests:
name: "Nginx test suite"
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: false
- name: "install nginx perl test suite"
run: |
sudo cpan Test::Nginx
- name: "run tests"
run: |
cd lua-cs-bouncer
for i in t/*.t; do
prove $i ;
done