Bootstrap 5 #62
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: .NET | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '9.0' | |
include-prerelease: True | |
- name: Build CertificateManager | |
run: dotnet build ./src/CertificateManager.sln | |
- name: Build AspNetCoreCertificateAuth | |
run: dotnet build ./examplesUsingCertificateAuthentication/AspNetCoreChained/AspNetCoreCertificateAuth.sln | |
- name: Build AzureCertAuth | |
run: dotnet build ./examplesUsingCertificateAuthentication/AzureCertAuth/AzureCertAuth.sln | |
- name: Build GrpcCertAuthChainedCertificate | |
run: dotnet build ./examplesUsingCertificateAuthentication/GrpcCertAuthChainedCertificate/GrpcCertAuthChainedCertificate.sln | |
- name: Build SigningCertificate | |
run: dotnet build ./examplesUsingCertificateAuthentication/SigningCertificate/SigningCertificate.csproj | |
- name: Build SimulateAzureIoTDevice | |
run: dotnet build ./examplesUsingCertificateAuthentication/SimulateAzureIoTDevice/SimulateAzureIoTDevice.sln | |