Skip to content

Feature/41 major imporvement #189

Feature/41 major imporvement

Feature/41 major imporvement #189

Workflow file for this run

name: .NET
on:
push:
branches:
- main
- "feature/*"
- "!feature/ci*"
paths-ignore:
- "**/README.md"
pull_request:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}