allow for longer top level domains #750
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
name: "Test auth service" | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "auth-service/**" | |
- ".github/workflows/publish.yml" | |
pull_request: | |
paths: | |
- "auth-service/**" | |
- ".github/workflows/publish.yml" | |
jobs: | |
docker_push: | |
name: Run auth service tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'corretto' | |
cache: 'gradle' | |
- run: docker compose up -d | |
- name: Run tests | |
run: chmod +x gradlew && ./gradlew test | |
working-directory: auth-service/ |