We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 176f7c0 commit 70abcf7Copy full SHA for 70abcf7
.github/workflows/test.yml
@@ -0,0 +1,30 @@
1
+name: Tests Rust Doc String on Multiple OS
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ unit-tests:
11
+ name: Unit Tests on ${{ matrix.os }}
12
+ runs-on: ${{ matrix.os }}
13
+ strategy:
14
+ matrix:
15
+ os: [ubuntu-latest, windows-latest, macos-latest]
16
17
+ steps:
18
+ - name: Checkout code
19
+ uses: actions/checkout@v4
20
21
+ - name: Set up Node.js
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: '20'
25
26
+ - name: Install dependencies
27
+ run: npm install
28
29
+ - name: Run unit tests
30
+ run: npm test
0 commit comments