Skip to content

Bump Refit from 4.6.107 to 7.2.22 in /client/MAVN.Service.SmartVouchers.Client #138

Bump Refit from 4.6.107 to 7.2.22 in /client/MAVN.Service.SmartVouchers.Client

Bump Refit from 4.6.107 to 7.2.22 in /client/MAVN.Service.SmartVouchers.Client #138

Workflow file for this run

name: test
on:
pull_request:
branches: [ master ]
push:
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.201
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov
- name: Publish coverage report
if: github.event_name == 'push'
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./tests/MAVN.Service.SmartVouchers.Tests/TestResults/coverage.info