Skip to content

Commit 86931e3

Browse files
committed
Add unit test job to CI workflow
1 parent 93cc505 commit 86931e3

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,19 @@ on:
1313
- main
1414

1515
jobs:
16+
unit_test:
17+
runs-on: ubuntu-latest
18+
permissions:
19+
contents: read
20+
name: test (unit)
21+
steps:
22+
- name: Checkout
23+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
24+
with:
25+
persist-credentials: false
26+
- name: Run unit tests
27+
run: make test_unit
28+
1629
test:
1730
runs-on: ubuntu-latest
1831
permissions:

0 commit comments

Comments
 (0)