chore(deps): update gradle/gradle-build-action action to v3 [security] #325
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: Test plugin | |
on: | |
push: | |
jobs: | |
test-plugin: | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: check out sources | |
uses: actions/checkout@v3 | |
- name: install fonts | |
run: sudo apt-get update -y && sudo apt-get install -y fonts-dejavu fontconfig | |
- name: setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: '11' | |
- name: test plugin | |
uses: gradle/gradle-build-action@v3 | |
with: | |
arguments: :cleanTest :test check verifyPlugin |