Skip to content

Update url endpoint to get semesters (Fix #119) #54

Update url endpoint to get semesters (Fix #119)

Update url endpoint to get semesters (Fix #119) #54

Workflow file for this run

name: CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'oracle'
- run: ./gradlew lint --stacktrace
- run: ./gradlew spotlessApply --stacktrace
- name: Run git push
run: |
git config --global user.email "bot@therealsuji.tk"
git config --global user.name "earphone-jack"
git add --all
git commit -m "Format files from commit $GITHUB_SHA" || true
git push