Skip to content

Commit 02cbcdb

Browse files
author
David Griffin
committed
Add GitHub Actions workflow.
1 parent b7299b2 commit 02cbcdb

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Run Tests
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
services:
10+
fauna:
11+
image: fauna/faunadb
12+
ports:
13+
- 8443:8443
14+
steps:
15+
- name: Check out repository
16+
uses: actions/checkout@v4
17+
18+
- name: Set up JDK
19+
uses: actions/setup-java@v4
20+
with:
21+
java-version: '17'
22+
distribution: corretto
23+
24+
- name: Run sample app
25+
run: ./gradlew build

0 commit comments

Comments
 (0)