Skip to content

Update readme

Update readme #20

Workflow file for this run

name: Test
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
services:
db:
image: mariadb:11.1.2
env:
MYSQL_DATABASE: 'talium'
MYSQL_USER: 'taliumBot'
MYSQL_PASSWORD: 'password'
MYSQL_ROOT_PASSWORD: 'password'
ports:
- "4770:3306"
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: 21
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn --batch-mode --update-snapshots clean compile
working-directory: bot
env:
JAVA_TOOL_OPTIONS: --enable-preview
- name: Run all Tests
run: mvn test
working-directory: bot
env:
JAVA_TOOL_OPTIONS: --enable-preview
tipeeeApikey: ${{ secrets.tipeeeApikey }}
DOCKER_PASS: ${{ secrets.tipeeeChannel }}