Skip to content

ci: add release.yml, changelog.md and change signature extension #85

ci: add release.yml, changelog.md and change signature extension

ci: add release.yml, changelog.md and change signature extension #85

Workflow file for this run

name: Linting Check
on:
push:
branches: ["main", "develop"]
pull_request:
branches: ["main", "develop"]
types: ["opened", "reopened", "synchronize"]
workflow_dispatch:
jobs:
cancel_previous:
runs-on: ubuntu-latest
steps:
- uses: styfle/[email protected]
with:
workflow_id: ${{ github.event.workflow.id }}
lint-check:
needs: cancel_previous
runs-on: ubuntu-latest
steps:
- uses: actions/setup-java@v3
with:
distribution: "temurin" # See 'Supported distributions' for available options
java-version: "17"
- uses: actions/checkout@v3
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: cache gradle dependencies
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-core-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-core-
- name: Run Linting Check
run: ./gradlew detekt