Merge pull request #863 from srvrco/fix-json_get-parse-error #3
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 against Staging server using acmedns | |
| on: | |
| push: | |
| paths-ignore: | |
| - '.github/workflows/*' | |
| branches: | |
| - master | |
| pull_request: | |
| paths-ignore: | |
| - '.github/workflows/*' | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| env: | |
| DYNU_API_KEY: ${{ secrets.DYNU_API_KEY == '' && '65cXefd35XbYf36546eg5dYcZT6X52Y2' || secrets.DYNU_API_KEY }} | |
| jobs: | |
| test-ubuntu-acmedns: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build the docker compose stack | |
| run: docker compose up -d --build | |
| - name: Run test suite on Ubuntu against Staging using acmedns | |
| run: test/run-test.sh ubuntu-acmedns |