Skip to content

Commit

Permalink
Add GitHub Actions workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Griffin committed Nov 15, 2024
1 parent b7299b2 commit 02cbcdb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run Tests

on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
services:
fauna:
image: fauna/faunadb
ports:
- 8443:8443
steps:
- name: Check out repository
uses: actions/checkout@v4

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

- name: Run sample app
run: ./gradlew build

0 comments on commit 02cbcdb

Please sign in to comment.