Skip to content

Commit

Permalink
Use gradlew in workflows (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
lbressler13 authored Mar 14, 2023
1 parent 4f0ce5e commit f50a48c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/basic_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v3

- name: Linting
run: gradle ktlintCheck
run: ./gradlew ktlintCheck

- name: Unit Tests
run: gradle test
run: ./gradlew test
6 changes: 3 additions & 3 deletions .github/workflows/main_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
uses: actions/checkout@v3

- name: Linting
run: gradle ktlintCheck
run: ./gradlew ktlintCheck

- name: Unit Tests
run: gradle test
run: ./gradlew test

- name: Build
run: gradle build
run: ./gradlew build
Empty file modified gradlew
100644 → 100755
Empty file.

0 comments on commit f50a48c

Please sign in to comment.