Skip to content

Update Github actions to run on 1ES pool #34

Update Github actions to run on 1ES pool

Update Github actions to run on 1ES pool #34

Workflow file for this run

name: pr-check
on:
pull_request:
branches: [ master ]
jobs:
build:
name: Build and test
runs-on:
- self-hosted
- 1ES.Pool=MC-Runner-1ES-Linux
container:
image: mcr.microsoft.com/openjdk/jdk:17-ubuntu
steps:
- uses: actions/checkout@v3
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build test
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: '**/build/test-results/test/TEST-*.xml'