Skip to content

Object destructuring #94

Object destructuring

Object destructuring #94

Workflow file for this run

on:
pull_request:
push:
branches:
- main
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 8.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.x"
- name: Install tools
run: dotnet tool restore
- name: Build
run: dotnet build
- name: Test
run: dotnet test --collect:"XPlat Code Coverage;Format=json,lcov,cobertura"
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}