Skip to content

feat: initial commit #3

feat: initial commit

feat: initial commit #3

Workflow file for this run

name: Deploy to Develop Environment
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.GIT_TOKEN }}
submodules: true
- name: Setup Java 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Update Git submodules
run: git submodule update --remote --recursive
- name: Build and test with Gradle
run: ./gradlew test