diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 912f0be..80aba0d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,10 +16,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache Gradle dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.gradle/caches key: gradle-deps-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} @@ -38,5 +38,7 @@ jobs: ./gradlew clean build --no-daemon - name: Run Tests + env: + TEST_CONCURRENCY: 4 run: | - ./gradlew test --no-daemon + ./gradlew test --no-daemon --info diff --git a/.gitignore b/.gitignore index 53d0747..654de59 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,5 @@ hs_err_pid* *.ipr *.iws /out/ + +/local.properties \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml index 0725869..dd49f5e 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -4,12 +4,24 @@