Skip to content

Update .gitignore

Update .gitignore #24

Workflow file for this run

name: build
on:
push:
branches: [master, main, Phase06]
pull_request:
branches: [master, main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
cache: true
- name: Install dependencies
run: dotnet restore
working-directory: ./
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: ./
- name: Test
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage"
working-directory: ./
- name: Publish code coverage reports to codecove.io
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./**/coverage.cobertura.xml
fail_ci_if_error: true