Skip to content

Commit dc1120f

Browse files
author
Michael Vasseur
committed
Setup minimal unit testing workflow
Reusing what we had before, later we can test the full matrix we expect.
1 parent ad6f796 commit dc1120f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/unit-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- '[0-9]+.[0-9]+'
99

1010
jobs:
11-
check-static-codecov:
11+
unit-tests:
1212
services:
1313
sqlserver:
1414
image: mariadb
@@ -19,6 +19,10 @@ jobs:
1919
options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3
2020
container:
2121
image: domjudge/gitlabci:24.04
22+
strategy:
23+
matrix:
24+
PHPVERSION: [8.1]
25+
TEST: [UNIT]
2226
runs-on: ubuntu-latest
2327
steps:
2428
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)