Add docs for CilTools.Visualization #1004
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: .NET Standard | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
NetStd-Debug: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '3.1.100' | |
- name: Build with dotnet | |
run: .\scripts\netstd\build.ps1 | |
shell: pwsh | |
- name: Test | |
run: .\scripts\netstd\test.ps1 | |
shell: pwsh | |
- name: Archive build results | |
uses: actions/upload-artifact@v1 | |
with: | |
name: Output | |
path: CilTools.Metadata/bin/Debug/ | |
- name: Archive test results | |
if: always() | |
uses: actions/upload-artifact@v1 | |
with: | |
name: Test results | |
path: tests/CilTools.BytecodeAnalysis.Tests/bin/Debug/ | |
NetStd-Release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '3.1.100' | |
- name: Build with dotnet | |
run: .\scripts\netstd\build.ps1 -config Release | |
shell: pwsh | |
- name: Test | |
run: .\scripts\netstd\test.ps1 -config Release | |
shell: pwsh | |
- name: Archive build results | |
uses: actions/upload-artifact@v1 | |
with: | |
name: Output | |
path: CilTools.Metadata/bin/Release/ | |
- name: Archive test results | |
if: always() | |
uses: actions/upload-artifact@v1 | |
with: | |
name: Test results | |
path: tests/CilTools.BytecodeAnalysis.Tests/bin/Release/ |