event filtering for scheduled games #136 #265
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: Oasis-ci-test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Start Redis | |
uses: supercharge/[email protected] | |
with: | |
redis-version: 5 | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml -DskipTests | |
- name: Running Tests | |
env: | |
OASIS_RELAX_TIME: 500 | |
run: mvn test | |
- name: Upload coverage | |
uses: codecov/codecov-action@v3 |