diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 75c01255..657ca724 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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 +