Skip to content

Commit

Permalink
Create push.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
capdevon authored Feb 20, 2024
1 parent 84caf17 commit 969cc13
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
# GitHub Actions workflow for commits pushed to the repo - all branches

name: CI at GitHub
on: [push]

jobs:
Java11-Linux:
if: contains(toJson(github.event.commits), '[ci skip] ') == false
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11
- uses: gradle/wrapper-validation-action@v1
- run: chmod +x gradlew
- run: ./gradlew javadoc build --console=plain --no-daemon --stacktrace

Java11-Windows:
if: contains(toJson(github.event.commits), '[ci skip] ') == false
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11
- run: ./gradlew javadoc build --console=plain --no-daemon --stacktrace
shell: bash

0 comments on commit 969cc13

Please sign in to comment.