Skip to content

Bump HidApi.Net from 1.0.4 to 1.1.0 in /src #166

Bump HidApi.Net from 1.0.4 to 1.1.0 in /src

Bump HidApi.Net from 1.0.4 to 1.1.0 in /src #166

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" ]
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
- 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