We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e14ef5 commit 5fa6e26Copy full SHA for 5fa6e26
.github/workflows/test-macro.yml
@@ -0,0 +1,25 @@
1
+on: [push, pull_request]
2
+
3
+name: Run Tests
4
5
+jobs:
6
+ testing:
7
+ name: testing
8
+ runs-on: ubuntu-18.04
9
10
+ steps:
11
+ - name: Checkout sources
12
+ uses: actions/checkout@v2
13
14
+ - name: Install toolchain
15
+ uses: actions-rs/toolchain@v1
16
+ with:
17
+ profile: minimal
18
+ toolchain: stable
19
+ override: true
20
21
+ - name: Test macro library
22
+ uses: actions-rs/cargo@v1
23
24
+ command: test
25
+ args: -p msp430-rt-macros --features device
0 commit comments