-
-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (31 loc) · 840 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
name: Unit tests
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '00 20 * * 1'
workflow_dispatch:
permissions: read-all
jobs:
tests:
name: Unit tests
strategy:
matrix:
os: [macos-12, macos-13, macos-14]
runs-on: ${{ matrix.os }}
steps:
- name: Harden runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Install dependencies
run: brew install popt just cmocka
- name: Run unit tests
shell: 'script -q /dev/null bash -e {0}' # Ensure stdin is attached to tty for unit tests
run: just test