Skip to content

Commit

Permalink
Add CI workflow (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
divergentdave authored Oct 30, 2023
1 parent 6e069e1 commit e9484d3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: ci

on:
push:
branches:
- main
- release/**
pull_request:

jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: "17"
check-latest: false
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Build and test
run: ./gradlew build
# Note that `connectedCheck` is skipped for now, because setting up an
# emulator is nontrivial.

0 comments on commit e9484d3

Please sign in to comment.