Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

Commit

Permalink
Merge branch '1.16' of https://github.com/Dqu1J/simplerauth into 1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Dqu1J committed Jun 23, 2021
2 parents 641c833 + 535e7f8 commit 917fa6d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ name: Java CI with Gradle

on:
push:
branches: [ master ]
branches: [ "master", "1.16" ]
paths-ignore:
- '.github/**'
- '**.md'
- '.gitignore'
- 'LICENSE'
pull_request:
branches: [ master ]
branches: [ "master", "1.16" ]
paths-ignore:
- '.github/**'
- '**.md'
Expand All @@ -23,13 +23,16 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
java_version: [1.8, 16]

steps:
- uses: actions/checkout@v2
- name: Set up JDK 16
- name: Set up JDK ${{matrix.java_version}}
uses: actions/setup-java@v2
with:
java-version: '16'
java-version: ${{matrix.java_version}}
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand Down

0 comments on commit 917fa6d

Please sign in to comment.