updated automated-testing.yaml #7
Workflow file for this run
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
on: | |
push: | |
branches: | |
- 'automated-testing' | |
- '!main' | |
workflow_dispatch: | |
jobs: | |
automated-testing: | |
name: Registry Automated Testing | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout Repository | |
uses: actions/checkout@v4 | |
- | |
name: Run Automated Testing | |
run: | | |
cd $GITHUB_WORKSPACE/docker/certs | |
./generate-certs.sh | |
cd .. | |
docker compose \ | |
--ansi never --profile int-registry-batch-loader up --detach --quiet-pull | |
curl --get localhost:8080/products |