Skip to content
This repository has been archived by the owner on Sep 29, 2024. It is now read-only.

Bump ws from 8.13.0 to 8.17.1 in /client #143

Bump ws from 8.13.0 to 8.17.1 in /client

Bump ws from 8.13.0 to 8.17.1 in /client #143

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: API test
on:
push:
branches: [master]
paths:
- "api/**"
pull_request:
branches: [master]
workflow_dispatch:
defaults:
run:
working-directory: ./api
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run unit tests
run: ./gradlew test
- name: Run integration tests
run: ./gradlew testIntegration