Merge pull request #2680 from hazendaz/master #4759
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DotNET | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-2019, windows-latest] | |
fail-fast: false | |
max-parallel: 4 | |
name: Test .net ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up environment | |
run: ./bootstrap.cmd | |
- name: Test with .Net | |
run: ./build.cmd all |