Skip to content

Commit

Permalink
using ./gradlew build instead of ./gradlew connectedCheck for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dmengelt committed Dec 13, 2023
1 parent 3227faa commit 8f1434a
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 22 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run unit tests

on:
push:
branches:
- '*'
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout Repo
uses: actions/checkout@v3

- name: Gradle Wrapper Validation
uses: gradle/[email protected]

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

- name: Run tests
run: ./gradlew -p compose-pay-button build # use connectedCheck in the future
22 changes: 0 additions & 22 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit 8f1434a

Please sign in to comment.