Add the PosInfoMoq1005 rule to check usage of the SetupSet<T>() metho… #74
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
pull_request: | |
branches: [ "main" ] | |
push: | |
branches: [ "releases/**" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET 8.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.x' | |
- name: Build | |
run: dotnet build --property:Configuration=Debug "PosInformatique.Moq.Analyzers.sln" | |
- name: Test with the dotnet CLI | |
run: dotnet test --property:Configuration=Debug "PosInformatique.Moq.Analyzers.sln" |