Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
name: Pull Request
about: Create a new pull request
labels: ''
---

## Task summery
<!-- Briefly describe the changes in this PR. -->

## Related Issue
<!-- Add a link to the related issue here. -->

## What type of change does this Task introduce?
<!-- Please check all that apply. -->
- [ ] ✨ New feature (non-breaking change which adds functionality)
- [ ] πŸ› Bug fix (non-breaking change which fixes an issue)
- [ ] ♻️ Refactor (non-breaking change which neither fixes a bug nor adds a feature)
- [ ] πŸ’₯ Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] πŸ“š Documentation update
- [ ] βš™οΈ Build/CI configuration
- [ ] 🎨 Style (changes that do not affect the meaning of the code)

## Checklist
<!-- Please check the following items before submitting your PR. -->

- [ ] My code follows the style guidelines of this project.
- [ ] Test code has been successfully executed.
- [ ] I have performed a lint check. `./gradlew detekt`
- [ ] I have tested my changes directly and confirmed that they are effective.

## Screenshots
<!-- If there are any UI changes, please attach screenshots. -->

| Before | After |
| ------ | ----- |
| | |
27 changes: 27 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Lint Check

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
detekt:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3

- name: Run detekt
run: ./gradlew detekt
Loading