Fix it so subclasses of Screen don't have to implement the already im… #225
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 on Push | |
on: | |
- push | |
jobs: | |
gradle: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Commit | |
uses: actions/checkout@v2 | |
- name: Fetch Tags | |
run: git fetch --unshallow --tags -f | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 21 | |
- name: Build Gradle | |
uses: eskatos/gradle-command-action@v1 | |
with: | |
arguments: check |