Skip to content

Commit

Permalink
Merge pull request #157 from robohorse/robohorse-patch-1
Browse files Browse the repository at this point in the history
Create verification.yml
  • Loading branch information
robohorse authored Sep 4, 2024
2 parents ce98ae2 + 58dff22 commit f6caa73
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/verification.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
pull_request:
branches: [ "main" ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

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

- name: Verify changes
run: ./gradlew ktlintCheck

- name: run tests
run: ./gradlew test

0 comments on commit f6caa73

Please sign in to comment.