Skip to content

Commit

Permalink
Merge pull request aim42#299 from ascheman/master
Browse files Browse the repository at this point in the history
Start GH Actions and fix minor problems
  • Loading branch information
gernotstarke authored Jan 4, 2023
2 parents 3d923b1 + 5fe38a1 commit 395151d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run Gradle
on:
pull_request:
push:
workflow_dispatch: {}
jobs:
gradle:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8

- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Execute Gradle build
run: ./gradlew check --scan -stacktrace
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ plugins {
id 'groovy'
id 'java'
id "com.gradle.plugin-publish" version "0.14.0"
id 'codenarc'
}

repositories {
Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class BrokenHttpLinksCheckerSpec extends Specification {
collector.nrOfProblems() == 0

where:
goodUrl << [ "http://junit.sourceforge.net/javadoc/org/junit/Before.html",
goodUrl << [ "https://junit.org/junit4/javadoc/latest/org/junit/Before.html",
"http://plumelib.org/plume-util/api/org/plumelib/util/DeterministicObject.html",
"http://people.csail.mit.edu/cpacheco/publications/randoop-case-study-abstract.html",
"https://douglascayers.com/2015/05/30/how-to-set-custom-java-path-after-installing-jdk-8/"
Expand Down

0 comments on commit 395151d

Please sign in to comment.