Support Audit Log change key for timeouts #114
Workflow file for this run
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: Main | |
on: | |
pull_request: | |
paths-ignore: | |
- 'CONTRIBUTORS.md' | |
- '.all-contributorsrc' | |
push: | |
branches-ignore: | |
- 'all-contributors/**' | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
name: Build and test | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
- uses: gradle/gradle-build-action@v2 | |
- name: Build project | |
run: ./gradlew build -x test | |
- name: Run tests | |
run: ./gradlew test |