Better information extraction from x509 command #20

Merged
MarkL4YG merged 22 commits from wip/38c3 into main 2025-04-21 10:16:27 +00:00
2 changed files with 55 additions and 0 deletions
Showing only changes of commit 483be8f11c - Show all commits

View file

@ -0,0 +1,27 @@
name: Build
on:
pull_request:
branches:
- main
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: code.forgejo.org/actions/checkout@v4
with:
fetch-depth: 0
- uses: github.com/actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- uses: github.com/gradle/actions/setup-gradle@v4
- name: Build gradle project
run: ./gradlew build
env:
ORG_GRADLE_PROJECT_SPRING_DEBUG: ${{ fromJSON(steps.pr-env.outputs.result).SPRING_DEBUG }}

View file

@ -0,0 +1,28 @@
name: Check formatting
on:
pull_request:
branches:
- main
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
check-formatting:
runs-on: ubuntu-24.04
steps:
- uses: code.forgejo.org/actions/checkout@v4
with:
fetch-depth: 0
- uses: github.com/actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- uses: github.com/gradle/actions/setup-gradle@v4
- uses: code.forgejo.org/actions/setup-node@v4
with:
node-version: 20
- name: Run formatting check
run: ./gradlew spotlessCheck