Skip to content

Merge branch 'feat/add-posts' into feat/add-problem-bookmark-and-like #131

Merge branch 'feat/add-posts' into feat/add-problem-bookmark-and-like

Merge branch 'feat/add-posts' into feat/add-problem-bookmark-and-like #131

Workflow file for this run

name: Test Spring
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
token: ${{ secrets.PRIVATE_TOKEN }}
submodules: true
- name: setup jdk 11
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
cache: 'gradle'
- name: Start Redis
uses: supercharge/[email protected]
with:
redis-version: 6
- name: add permission to gradlew
run: chmod +x ./gradlew
shell: bash
- name: test
run: ./gradlew test
shell: bash