Added dark theme logo #26
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 | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out project | |
uses: actions/checkout@v3 | |
- name: Set up Python # needed for running Ansible in tests | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: zulu # https://www.azul.com/downloads/?package=jdk | |
- name: Run all validation checks | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: check |