Skip to content

nginx tests

nginx tests #4

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: "install nginx perl test suite"
run: |
sudo cpan Test::Nginx
- name: "run tests"
run: |
for i in t/*.t do
prove $i
done