Fix deletion of server with sites #78
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Test Suite' | |
on: [ 'push', 'pull_request' ] | |
jobs: | |
tests: | |
name: 'Test Suite' | |
runs-on: 'ubuntu-22.04' | |
timeout-minutes: 20 | |
steps: | |
- name: 'Check out the repository' | |
uses: 'actions/checkout@v3' | |
- name: 'Set up Perl environment' | |
uses: 'shogo82148/actions-setup-perl@v1' | |
- name: 'Install dependencies' | |
run: 'cpanm --installdeps .' | |
- name: 'Run tests' | |
run: 'prove -lrsv t' |