chore(deps): bump MSTest.TestAdapter from 3.6.0 to 3.6.3 #131
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: Build and test | |
on: | |
push: | |
branches: | |
- '!main' | |
pull_request: | |
jobs: | |
build_and_test: | |
name: Build and test | |
runs-on: ubuntu-latest | |
steps: | |
- name : Checkout Repo | |
uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 8.0.101 | |
- name: Run dotnet format | |
run: dotnet format lit-redis.sln --verify-no-changes | |
- name: Install dependencies | |
run: dotnet restore lit-redis.sln | |
- name: Build | |
run: dotnet build lit-redis.sln --configuration Release --no-restore | |
- name: Test | |
run: dotnet test lit-redis.sln --logger GitHubActions --no-restore --verbosity normal |