Skip to content

Merge branch 'version_3' of https://github.com/roger-castaldo/VueJSMV… #89

Merge branch 'version_3' of https://github.com/roger-castaldo/VueJSMV…

Merge branch 'version_3' of https://github.com/roger-castaldo/VueJSMV… #89

Workflow file for this run

name: .NET-Test-6x
on:
push:
branches: [ 'version_3' ]
pull_request:
branches: [ 'version_3' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: |
6.0.x
7.0.x
- name: Restore dependencies for Library
run: dotnet restore VueJSMVCDotNet/VueJSMVCDotNet.csproj
- name: Build-6.0 for library
run: dotnet build --framework net6.0 --no-restore VueJSMVCDotNet/VueJSMVCDotNet.csproj
- name: Restore dependencies for testing
run: dotnet restore AutomatedTesting
- name: Build-6.0 testing
run: dotnet build --framework net6.0 --no-restore AutomatedTesting
- name: Test-6.0
run: dotnet test --framework net6.0 --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover AutomatedTesting
- name: Codecov coverage upload
uses: codecov/codecov-action@v3.1.1