Skip to content

Update README.md

Update README.md #439

Workflow file for this run

name: Ubuntu
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: Unit Test Cover
run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=lcov
/p:CoverletOutput='/home/runner/work/qpmodel/qpmodel/test/lcov.info'
/p:ExcludeByFile=\"**/qpmodel/program.cs,**/psql/**/*.cs,**/psql/*.cs,**/qpmodel/obj/**/*.cs\"
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "/home/runner/work/qpmodel/qpmodel/test/lcov.info"