Update dotnet.yml #6
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
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: .NET | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore dependencies | |
run: dotnet restore ./src/HMACSerialiser.csproj | |
- name: Build | |
run: dotnet build --configuration Release --no-restore ./src/HMACSerialiser.csproj | |
- name: Test HMAC | |
run: dotnet test --configuration Release --no-build --verbosity normal ./tests/HMACTests/HMACTests.csproj | |
- name: Test HKDF | |
run: dotnet test --configuration Release --no-build --verbosity normal ./tests/HKDFTests/HKDFTests.csproj | |
- name: Test Base64 Encoders | |
run: dotnet test --configuration Release --no-build --verbosity normal ./tests/Base64EncoderTests/Base64EncoderTests.csproj | |