This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
Merge pull request #111 from o19s/improving-get #106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew -Dtests.security.manager=false clean test | |
# - name: Publish packages to GitHub packages | |
# run: ./gradlew publishPluginZipPublicationToSnapshotsRepository | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |