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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |