-
Notifications
You must be signed in to change notification settings - Fork 21
84 lines (69 loc) · 1.89 KB
/
java-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Java - Run Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
java-test:
runs-on: ubuntu-latest
# Service containers to run with `container-job`
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres:14.1-alpine
# Provide the password for postgres
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
# Maps tcp port 5432 on service container to the host
ports:
- 5432:5432
# container: ubuntu:22.04
env:
DB_USERNAME: postgres
DB_PASSWORD: postgres
JDBC_URL: jdbc:postgresql://localhost:5432/postgres
steps:
# Disabling for now and seeing what happens
- name: Validate Job Run For Scraping
run: exit 1
if: >
false
&& github.ref != 'refs/heads/main'
&& !contains(github.event.head_commit.message, 'RUN_TEST')
- name: Checkout Project
uses: actions/checkout@v3
with:
lfs: true
- name: Set up Node + Yarn
uses: actions/setup-node@v3
with:
cache: 'yarn'
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- name: Build JAR file
run: |
yarn gradle jar
# Command lifted from `src/build/docker/entrypoint.sh`
- name: Scrape terms
run: >
java -Xmx1G -Djdk.httpclient.allowRestrictedHeaders=host,connection
-jar build/libs/schedge.jar
db test-populate
- name: Test Code
id: test-code
run: yarn test