made weekdays more pronounced #142
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: running test with github actions | |
on: pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: run unit tests on java 17 | |
steps: | |
- uses: actions/checkout@master | |
- name: setup java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- run: gradle unitTests -p backend/app/ |