Skip to content

Commit e50a1d1

Browse files
authored
Tried adding MacOS testing actions
1 parent 9ef552a commit e50a1d1

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/rust.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,24 @@ jobs:
4444
run: ilasm --version
4545
- name: Run cargo tests
4646
run: cargo test --verbose ::stable
47+
macos_test:
48+
49+
runs-on: macos-latest
50+
51+
steps:
52+
- uses: actions/checkout@v3
53+
- name: Build
54+
run: cargo build --verbose
55+
- name: Setup dotnet
56+
uses: actions/setup-dotnet@v3
57+
with:
58+
dotnet-version: '8.0.x'
59+
#- name: Install ILASM
60+
#run: dotnet add package Microsoft.NETCore.ILAsm --version 8.0.0
61+
- name: Check ILASM
62+
run: ilasm --version
63+
- name: Run cargo tests
64+
run: cargo test --verbose ::stable
65+
4766

4867

0 commit comments

Comments
 (0)