Add more prototypes for logo #14
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: CI | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Test the project | |
runs-on: windows-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Set up a specific Java version | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" # OR adopt OR microsoft OR... | |
java-version: "17" | |
- name: Run all unit tests | |
run: ./gradlew test --stacktrace | |
- name: Upload test reports | |
if: always() # Run even if the previous steps failed | |
uses: actions/upload-artifact@v4 | |
with: | |
name: tests-report | |
path: build/reports/tests/ |