diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1fb305a4..969b005d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,23 +34,23 @@ jobs: run: ./build.cmd DotnetBuild env: CI: true - #test: - # strategy: - # matrix: - # os: [self-hosted] - # runs-on: ${{ matrix.os }} - # - # steps: - # - uses: actions/checkout@v2 - # - name: Test - # if: runner.os != 'Windows' - # run: | - # chmod +x ./build.sh - # ./build.sh DotnetTest - # env: - # CI: true - # - name: Test - # if: runner.os == 'Windows' - # run: ./build.cmd DotnetTest - # env: - # CI: true + test: + strategy: + matrix: + os: [self-hosted] + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v2 + - name: Test + if: runner.os != 'Windows' + run: | + chmod +x ./build.sh + ./build.sh DotnetTest + env: + CI: true + - name: Test + if: runner.os == 'Windows' + run: ./build.cmd DotnetTest + env: + CI: true