Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,24 @@ jobs:
run: ilasm --version
- name: Run cargo tests
run: cargo test --verbose ::stable
macos_test:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
#- name: Install ILASM
#run: dotnet add package Microsoft.NETCore.ILAsm --version 8.0.0
- name: Check ILASM
run: ilasm --version
- name: Run cargo tests
run: cargo test --verbose ::stable