-
Notifications
You must be signed in to change notification settings - Fork 18
39 lines (31 loc) · 948 Bytes
/
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
name: CI
on: push
jobs:
nvd_scan:
uses: yetanalytics/workflow-nvd/.github/workflows/nvd-scan.yml@v1
with:
nvd-clojure-version: "3.3.0"
classpath-command: "clojure -Spath -Adb-sqlite:db-postgres"
nvd-config-filename: ".nvd/config.json"
lint:
uses: yetanalytics/workflow-linter/.github/workflows/linter.yml@v2023.01.20
with:
lint-directories: "src/bench src/build src/db src/main src/test"
test:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- test-sqlite
- test-postgres-11
- test-postgres-12
- test-postgres-13
- test-postgres-14
- test-postgres-15
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup CI Environment
uses: yetanalytics/actions/setup-env@v0.0.4
- name: Run Makefile Target ${{ matrix.target }}
run: make ${{ matrix.target }}