Skip to content

Commit

Permalink
Init beta manifest pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
captainepoch committed Apr 21, 2024
1 parent 3088db3 commit 8d0b285
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/ci_beta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build Beta

on:
push:
branches:
- "beta/*"

permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
check-style:
name: Ktlint check beta
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: "17"
distribution: "temurin"
cache: gradle

- name: Gradle Wrapper Validation
uses: gradle/actions/wrapper-validation@v3

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

- name: Run ktlint
run: |
cd husky
./gradlew ktlintCheck

0 comments on commit 8d0b285

Please sign in to comment.