Skip to content

Commit 5fa6e26

Browse files
committed
Add CI test for macros
1 parent 8e14ef5 commit 5fa6e26

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/test-macro.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
24+
command: test
25+
args: -p msp430-rt-macros --features device

0 commit comments

Comments
 (0)