Skip to content

Refactor NhlGameService to add CalculateMultiplier method #422

Refactor NhlGameService to add CalculateMultiplier method

Refactor NhlGameService to add CalculateMultiplier method #422

Workflow file for this run

name: Develop Build
on:
push:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Run Tests
run: dotnet test --configuration Release --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3