Merge pull request #9 from Pwnzer0tt1/ci-tests

Add CI tests
This commit is contained in:
Nicola Guerrera
2024-04-09 03:56:02 +02:00
committed by GitHub
2 changed files with 21 additions and 0 deletions

21
.github/workflows/docker-tests.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Run Test on Docker Image
on:
release:
types:
- published
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and run firegex
run: python3 start.py -b --psw-no-interactive testpassword
- name: Run tests
run: cd tests && ./run_tests.sh

0
tests/run_tests.sh Normal file → Executable file
View File