We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 800b86d commit b307122Copy full SHA for b307122
1 file changed
.github/workflows/main.yml
@@ -15,15 +15,17 @@ jobs:
15
16
strategy:
17
matrix:
18
- os: [ubuntu-latest, windows-latest]
+ os: [ubuntu-latest, windows-latest, macos-latest]
19
+
20
21
runs-on: ${{ matrix.os }}
22
23
steps:
24
- name: checkout
25
uses: actions/checkout@v4
26
- - name: Install dependencies
27
+ - name: Install libudev (Linux)
28
+ if: runner.os == 'Linux'
29
run: sudo apt-get update && sudo apt-get install -y libudev-dev pkg-config
30
31
- uses: actions/cache@v4
0 commit comments