-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A journey of a thousand miles begins with a single step.
- Loading branch information
Showing
4 changed files
with
76 additions
and
27 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,40 +19,39 @@ jobs: | |
# The type of runner that the job will run on | ||
runs-on: | ||
- ubuntu-latest | ||
#- windows-latest | ||
#- macos-latest | ||
permissions: | ||
checks: write | ||
pull-requests: write | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
# fetch-depth:0 is needed to get tags too | ||
# normal builds do not need history. | ||
# https://github.com/actions/checkout/tags | ||
- uses: actions/checkout@v2 | ||
# with: | ||
# fetch-depth: 0 | ||
- uses: actions/checkout@v3.5.0 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# https://github.com/actions/setup-java/tags | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3.11.0 | ||
with: | ||
java-version: 1.8 | ||
distribution: 'temurin' | ||
java-version: 17 | ||
|
||
# https://github.com/leafo/gh-actions-lua/tags | ||
- name: Set up Lua | ||
uses: leafo/gh-actions-lua@v8 | ||
uses: leafo/gh-actions-lua@v10 | ||
with: | ||
luaVersion: "5.3.5" | ||
|
||
# Runs a single command using the runners shell | ||
- name: Build with ant | ||
run: ant package | ||
|
||
# https://github.com/marketplace/actions/test-reporter | ||
- name: Test Report | ||
uses: dorny/test-reporter@v1 | ||
if: success() || failure() # run this step even if previous step failed | ||
- name: Publish Unit Test Results | ||
uses: EnricoMi/[email protected] | ||
if: always() | ||
with: | ||
name: Ineed Tests # Name of the check run which will be created | ||
path: target/reports/testOut.xml # Path to test results | ||
reporter: java-junit # Format of test results | ||
files: target/reports/*.xml |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
INTERFACE=100005 | ||
INTERFACE=100105 | ||
ADDONLOC=/Applications/World of Warcraft/_retail_/Interface/Addons |
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