Skip to content

feat: add support for subject name strategy #27

feat: add support for subject name strategy

feat: add support for subject name strategy #27

Workflow file for this run

name: Pre Merge Checks
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
gradle:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
env:
GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUBLISH_KEY }}
GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUBLISH_SECRET }}
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }}
steps:
- name: Checkout Repo
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # https://github.com/actions/checkout
- name: Cache Gradle Caches
uses: gradle/gradle-build-action@v2 # https://github.com/gradle/gradle-build-action
- name: Run Gradle tasks
run: ./gradlew preMerge --continue