diff --git a/.github/workflows/automated-testing.yaml b/.github/workflows/automated-testing.yaml new file mode 100644 index 0000000..f0a945e --- /dev/null +++ b/.github/workflows/automated-testing.yaml @@ -0,0 +1,18 @@ +on: + push: + branches: + - 'automated-testing' + - '!main' + workflow_dispatch: + +jobs: + automated-testing: + name: Registry Automated Testing + runs-on: ubuntu-latest + steps: + # need checkout before using compose-action + - uses: actions/checkout@v3 + - uses: isbang/compose-action@v1.5.1 + with: + compose-file: "./docker/docker-compose.yml" + compose-flags: "--profile int-registry-service-loader"