This repository was archived by the owner on Apr 26, 2025. It is now read-only.
Bump org.opentest4j.reporting:open-test-reporting-events #103
This file contains hidden or 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: Build | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Java 11 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 11 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Setup act | |
| run: | | |
| curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash -s -- -b "/usr/bin" | |
| # Use the micro image to speed up tests: https://nektosact.com/usage/runners.html | |
| echo "-P ubuntu-latest=node:16-buster-slim" > $HOME/.actrc | |
| - name: Build | |
| run: ./gradlew build |