Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Netherwhal committed Mar 2, 2024
1 parent b41bf49 commit 664b007
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
- name: Build jar
run: make

- name: Report coverage
run: make coveralls
env: # Or as an environment variable
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand Down
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ plugins {
group = 'net.simplyvanilla'
version = '0.1.0'

java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
}

repositories {
mavenCentral()
maven {
Expand Down

0 comments on commit 664b007

Please sign in to comment.