Skip to content

updates workflows for dotnet 8 #14

updates workflows for dotnet 8

updates workflows for dotnet 8 #14

Workflow file for this run

name: test
on:
push:
paths:
- ".github/**/*.*"
- "src/**/*.*"
pull_request:
types: [assigned, opened, synchronize, reopened]
env:
DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX: '2'
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: setup_dotnet
uses: actions/setup-dotnet@v2
with:
dotnet-version: |
6.0.x
8.0.x
- name: install_dependencies
run: dotnet restore ./src/Solid.Identity.Protocols.Saml2p.sln
- name: build
run: dotnet build ./src/Solid.Identity.Protocols.Saml2p.sln --configuration Release --no-restore
- name: test
run: dotnet test ./src/Solid.Identity.Protocols.Saml2p.sln --configuration Release --no-restore --no-build