Skip to content

Adds sp-initiated endpoints #8

Adds sp-initiated endpoints

Adds sp-initiated endpoints #8

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@v1
with:
dotnet-version: '5.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