Loading constant colors from resources & doc #16
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: Test | |
on: pull_request | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⚡️Checkout | |
uses: actions/checkout@v3 | |
- name: 🐘Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: 🍻Gradle build | |
run: ./gradlew test executableJar | |
# - name: 🚀Upload artifact | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: JAR | |
# path: build/libs/*-executable.jar | |
# retention-days: 1 |