Bump github.com/docker/docker from 25.0.5+incompatible to 26.1.4+incompatible in /integration/vault-plugin-secrets-ksm #793
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: Test-DotNet | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test-dotnet: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet-version: [ '6.0.x' ] | |
defaults: | |
run: | |
working-directory: ./sdk/dotNet | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET SDK ${{ matrix.dotnet-version }} | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Test | |
run: dotnet test --no-restore --verbosity minimal |