Skip to content

Update README

Update README #148

Workflow file for this run

name: .NET Core CI
on: [push]
jobs:
test:
name: Test on .NET Core ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0
- name: Test with dotnet
run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:Exclude=[NUnit3.TestAdapter]* ./test/EmbedIO.Tests/EmbedIO.Tests.csproj -c Release
- uses: codecov/codecov-action@v1
with:
file: test/EmbedIO.Tests/coverage.info
token: ${{ secrets.CODECOV_TOKEN }}