Skip to content

feat: support multiple reply-to addresses in EmailEndpoint #4

feat: support multiple reply-to addresses in EmailEndpoint

feat: support multiple reply-to addresses in EmailEndpoint #4

Workflow file for this run

name: Check code style
on:
push:
paths:
- '**.java'
- '.github/workflows/code-style.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checkstyle:
name: checkstyle
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Check code style
run: ./gradlew checkstyleMain checkstyleTest --no-daemon || true