Better program validation #192
Workflow file for this run
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
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: Build and Test | |
on: | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- 'doc/**' | |
- 'README.md' | |
pull_request: | |
branches: [ "main" ] | |
paths-ignore: | |
- 'doc/**' | |
- 'README.md' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest] | |
include: | |
- os: windows-latest | |
artifact: windows.complog | |
slash: \ | |
- os: ubuntu-latest | |
artifact: ubuntu.complog | |
slash: / | |
env: | |
TEST_ARTIFACTS_PATH: ${{ github.workspace }}${{ matrix.slash }}artifacts${{ matrix.slash }}test | |
TEST_RESULTS_PATH: ${{ github.workspace }}${{ matrix.slash }}artifacts${{ matrix.slash }}test-results | |
TEST_COVERAGE_PATH: ${{ github.workspace }}${{ matrix.slash }}artifacts${{ matrix.slash }}coverage | |
name: Build and Test ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Setup the output directories for usage | |
- name: Create directories | |
shell: pwsh | |
run: New-Item -Type Directory -Path @("${{ env.TEST_ARTIFACTS_PATH }}", "${{ env.TEST_RESULTS_PATH }}", "${{ env.TEST_COVERAGE_PATH }}") | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore -bl | |
- name: Test Linux | |
run: > | |
dotnet test --no-build --framework net7.0 | |
--logger "console;verbosity=detailed" | |
--logger "trx;LogFileName=${{ env.TEST_RESULTS_PATH }}/TestResults-Linux.trx" | |
-p:CollectCoverage=true -p:CoverletOutputFormat=cobertura -p:CoverletOutput=${{ env.TEST_COVERAGE_PATH }}/coverage.linux.xml | |
if: matrix.os == 'ubuntu-latest' | |
- name: Test Windows .NET Core | |
run: > | |
dotnet test --no-build --framework net7.0 | |
--logger "console;verbosity=detailed" | |
--logger "trx;LogFileName=${{ env.TEST_RESULTS_PATH}}/TestResults-Windows-Core.trx" | |
-p:CollectCoverage=true -p:CoverletOutputFormat=cobertura -p:CoverletOutput=${{ env.TEST_COVERAGE_PATH }}/coverage.windows.core.xml | |
if: matrix.os == 'windows-latest' | |
- name: Test Windows .NET Framework | |
run: > | |
dotnet test --no-build --framework net7.0 | |
--logger "console;verbosity=detailed" | |
--logger "trx;LogFileName=${{ env.TEST_RESULTS_PATH}}/TestResults-Windows-Framework.trx" | |
-p:CollectCoverage=true -p:CoverletOutputFormat=cobertura -p:CoverletOutput=${{ env.TEST_COVERAGE_PATH }}/coverage.windows.framework.xml | |
if: matrix.os == 'windows-latest' | |
- name: Create Compiler Log | |
run: dotnet run --project src/Basic.CompilerLog/Basic.CompilerLog.csproj create msbuild.binlog | |
- name: Publish Compiler Log | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.artifact }} | |
path: msbuild.complog | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: ${{ env.TEST_COVERAGE_PATH }} | |
- name: Publish Test Results | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: test-results | |
path: ${{ env.TEST_RESULTS_PATH }}/*.trx | |
- name: Publish Test Artifacts | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: Test Artifacts ${{ matrix.os }} | |
path: $ {{ env.TEST_ARTIFACTS_PATH }} | |