mirror of
https://github.com/fankes/unmeta-gradle-plugin.git
synced 2025-09-04 01:55:16 +08:00
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
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@v3
|
|
- name: Cache Gradle Caches
|
|
uses: gradle/gradle-build-action@v2
|
|
- name: Run Gradle tasks
|
|
run: ./gradlew preMerge --continue
|
|
|
|
# We do a run of the new task `templateExample` created by the plugin
|
|
- name: Run the plugin
|
|
run: ./gradlew templateExample --message="Test Run" --tag=CI
|
|
if: success()
|
|
# And we verify that the output of the file is correct.
|
|
- name: Verify the plugin output
|
|
run: grep -Fxq "[CI] Test Run" ./example/build/template-example.txt
|
|
if: success()
|