Update README.md #180
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: Java CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 1.8 | |
uses: actions/[email protected] | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: robocode.core test artifacts | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: robocode.core-test-result | |
path: robocode.core/build/reports/tests/test | |
- name: robocode.host test artifacts | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: robocode.host-test-result | |
path: robocode.host/build/reports/tests/test | |
- name: robocode.tests test artifacts | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: robocode.tests-result | |
path: robocode.tests/build/reports/tests/test | |
- name: setup binary artifact | |
uses: actions/[email protected] | |
with: | |
name: robocode-setup | |
path: build/robocode-*-setup.jar |