Skip to content

[Refactor] DTOs to records and drop ingest tone #29

[Refactor] DTOs to records and drop ingest tone

[Refactor] DTOs to records and drop ingest tone #29

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- develop
push:
branches:
- main
- develop
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "21"
cache: gradle
- name: Grant Gradle permission
run: chmod +x ./gradlew
- name: Run tests
run: ./gradlew --no-daemon clean test
docker-build:
name: Docker Build
runs-on: ubuntu-latest
needs: test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t jobdri-api:${{ github.sha }} .