Skip to content

workflows/*.yml: Update patch version of .NET 6 & .NET 7 #109

workflows/*.yml: Update patch version of .NET 6 & .NET 7

workflows/*.yml: Update patch version of .NET 6 & .NET 7 #109

Workflow file for this run

name: SecretSharingDotNet .NET
on:
push:
branches:
- '*'
tags-ignore:
- '*'
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
strategy:
matrix:
dotnet: [ '6.0.416', '7.0.403' ]
name: Dotnet ${{ matrix.dotnet }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Build with dotnet SDK v6.0
if: matrix.dotnet == '6.0.416'
run: dotnet build --configuration Release SecretSharingDotNet6.sln
- name: Test with dotnet SDK v6.0
if: matrix.dotnet == '6.0.416'
run: dotnet test --configuration Release SecretSharingDotNet6.sln
- name: Build with dotnet SDK v7.0
if: matrix.dotnet == '7.0.403'
run: dotnet build --configuration Release SecretSharingDotNet7.sln
- name: Test with dotnet SDK v7.0
if: matrix.dotnet == '7.0.403'
run: dotnet test --configuration Release SecretSharingDotNet7.sln