Skip to content

update demo site link #36

update demo site link

update demo site link #36

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
if: "!contains(github.event.head_commit.message, '[skip ci]')"
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_NOLOGO: true
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: "3.1.x"
- name: Setup .NET 6 SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: "6.0.x"
- name: Test
run: dotnet test --collect:"XPlat Code Coverage"
- name: Update codecov
if: startsWith(github.repository, 'khellang/')
uses: codecov/codecov-action@v1