-
Notifications
You must be signed in to change notification settings - Fork 29
40 lines (33 loc) · 942 Bytes
/
test.yml
File metadata and controls
40 lines (33 loc) · 942 Bytes
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
name: CI
on: push
jobs:
lint:
uses: yetanalytics/workflow-linter/.github/workflows/linter.yml@v2024.08.01
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-14
- test-postgres-15
- test-postgres-16
- test-postgres-17
- test-postgres-18
- test-mariadb-10.6
- test-mariadb-10.11
- test-mariadb-11.4
- test-mariadb-11.7.2
- test-mariadb-11.8
- test-mysql-8.0.44
- test-mysql-8.4
- test-mysql-9.5.0
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup CI Environment
uses: yetanalytics/action-setup-env@v2
- name: Run Makefile Target ${{ matrix.target }}
run: make ${{ matrix.target }}