Fix to drop obsolete secret #28
This file contains hidden or 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: "run-tests" | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| path: 'jailkit' | |
| - name: Install dependencies | |
| run: |- | |
| sudo apt-get -y update | |
| sudo apt-get -y install perl libconfig-inifiles-perl libtest-strict-perl | |
| - name: Run tests | |
| run: |- | |
| cd jailkit | |
| prove |