Skip to content

Version 0.0.9.

Version 0.0.9. #16

Workflow file for this run

name: .NET CI
on:
push:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
name: .NET test
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Clean
run: dotnet clean
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --filter "FullyQualifiedName!=OrangeCabinet.Tests.TestServer.TestForever" --collect:"XPlat Code Coverage"
- name: Upload coverage
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}