Skip to content

Fixed OTHER_POS regex not matching strings longer than 1 char #24

Fixed OTHER_POS regex not matching strings longer than 1 char

Fixed OTHER_POS regex not matching strings longer than 1 char #24

Workflow file for this run

name: Tests
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ development ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Set Java version
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: 8.6
- name: Test with Gradle
working-directory: ./server
run: ./gradlew test --info