Skip to content

Create tech stack docs (techstack.yml and techstack.md) #21

Create tech stack docs (techstack.yml and techstack.md)

Create tech stack docs (techstack.yml and techstack.md) #21

Workflow file for this run

name: Run Checks on Codebase
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Run Unit tests
run: ./gradlew clean test
- name: Run Ktlint check
run: ./gradlew ktlintCheck