Skip to content

Bump Meziantou.Analyzer from 2.0.153 to 2.0.160 #50

Bump Meziantou.Analyzer from 2.0.153 to 2.0.160

Bump Meziantou.Analyzer from 2.0.153 to 2.0.160 #50

Workflow file for this run

name: Build and Unit Test RFID Controller
on:
push:
branches: [ develop, main ]
pull_request:
branches: [ develop, main ]
jobs:
build_test_rfid_controller:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore SickRfid.sln
- name: Build
run: dotnet build SickRfid.sln --no-restore
- name: Test
run: dotnet test SickRfid.sln --no-build --verbosity normal