Skip to content

Add the ThunderClient docs from the iteration template #261

Add the ThunderClient docs from the iteration template

Add the ThunderClient docs from the iteration template #261

Workflow file for this run

name: Server
on: [push]
jobs:
gradle-build:
runs-on: ubuntu-latest
services:
mongo:
image: mongo:4.2
ports:
- '27017-27019:27017-27019'
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Cache Gradle artifacts (downloaded JARs, the wrapper, and any downloaded JDKs)
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
~/.gradle/jdks
key: ${{ runner.os }}-gradle-${{ hashFiles('**/.gradle/') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build with Gradle
run: ./gradlew build
working-directory: ./server