Skip to content

chore(deps): bump super-linter/super-linter from 7 to 8 (#137) #360

chore(deps): bump super-linter/super-linter from 7 to 8 (#137)

chore(deps): bump super-linter/super-linter from 7 to 8 (#137) #360

Workflow file for this run

name: .NET
on:
push:
branches:
- main
- next
- beta
- dev
- "*.x"
pull_request:
branches:
- main
- next
- beta
- dev
- "*.x"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Restore dependencies
run: dotnet restore --locked-mode
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal --collect:"XPlat Code Coverage"
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5.4.3
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: TempMaiSe/TempMaiSe
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}