Skip to content

Bump xunit from 2.9.1 to 2.9.2 in /src #180

Bump xunit from 2.9.1 to 2.9.2 in /src

Bump xunit from 2.9.1 to 2.9.2 in /src #180

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
#env:
# NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
#cache: true
- name: Restore dependencies
working-directory: ./src
run: dotnet restore
- name: Build
working-directory: ./src
run: dotnet build --no-restore
- name: Test
working-directory: ./src
run: dotnet test --no-build --no-restore --verbosity normal --logger "trx;LogFileName=test-results.trx" Sleddog.Blink1.Tests
- uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-results
path: '**/*.trx'
retention-days: 1