diff options
author | nea <nea@nea.moe> | 2023-08-15 20:33:58 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-08-15 20:46:14 +0200 |
commit | de694f30b5e2f6fd62a00e5a622abe0a2411afb9 (patch) | |
tree | e442f960c57000a2f6b763d3dcb7d945593cbb9d /.github/workflows/build.yml | |
parent | 54b0f2ea841d2ce3895713415481271aa3034b30 (diff) | |
download | nealisp-de694f30b5e2f6fd62a00e5a622abe0a2411afb9.tar.gz nealisp-de694f30b5e2f6fd62a00e5a622abe0a2411afb9.tar.bz2 nealisp-de694f30b5e2f6fd62a00e5a622abe0a2411afb9.zip |
Add github actions testing
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..067a342 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,29 @@ +name: Build +on: + - push + - pull_request + +jobs: + build: + name: Test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + name: Checkout repository + - name: Set up JDK 8 + uses: actions/setup-java@v3 + with: + distribution: temurin + java-version: 8 + - name: Set up gradle cache + uses: gradle/gradle-build-action@v2 + - name: Build with gradle + run: ./gradlew clean build --stacktrace + - name: Test with gradle + run: ./gradlew test testLisps --stacktrace + - name: Generate markdown test report + if: ${{ !cancelled() }} + run: | + curl -L https://github.com/kitproj/junit2md/releases/download/v0.1.0/junit2md_0.1.0_Linux_x86_64.tar.gz | tar -zxvf - junit2md + chmod +x junit2md + ./junit2md < build/test-results/nealisp/results.xml > "$GITHUB_STEP_SUMMARY"
\ No newline at end of file |