Skip to content

Instantly share code, notes, and snippets.

@sergei-mikhailovskii-idf
Last active December 8, 2023 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergei-mikhailovskii-idf/7bf3648c8b915d420c69b118a6f6e2f0 to your computer and use it in GitHub Desktop.
Save sergei-mikhailovskii-idf/7bf3648c8b915d420c69b118a6f6e2f0 to your computer and use it in GitHub Desktop.
name: Validate PR
on:
pull_request:
branches:
- 'master'
jobs:
build_project:
if: startsWith(github.head_ref, 'renovate')
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Setup java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Build
run: |
./gradlew :dependency:build --no-daemon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment