Skip to content

Update all non-major dependencies #1086

Update all non-major dependencies

Update all non-major dependencies #1086

Workflow file for this run

name: tests
on:
push:
branches:
- main
- master
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
gradle-test:
name: "Run tests on JVM with gradle"
runs-on: ubuntu-latest
services:
db:
image: mariadb:10.11.5
ports:
- 3306:3306
env:
MYSQL_ROOT_PASSWORD: 4ab4008b362142c391cc9e1ab98addc6b25f00f5
MYSQL_DATABASE: aisu
MYSQL_USER: aisu
MYSQL_PASSWORD: 4ab4008b362142c391cc9e1ab98addc6b25f00f5
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
redis:
image: redis:7.2.1
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '19'
cache: 'gradle'
- run: ./gradlew build -x test --no-daemon
- run: ./gradlew migrateTestingDatabase --no-daemon
- run: ./gradlew test --no-daemon