Skip to content

IdentityModel.AspNetCore.OAuth2Introspection => Duende.AspNetCore.Authentication.OAuth2Introspection #2917

IdentityModel.AspNetCore.OAuth2Introspection => Duende.AspNetCore.Authentication.OAuth2Introspection

IdentityModel.AspNetCore.OAuth2Introspection => Duende.AspNetCore.Authentication.OAuth2Introspection #2917

Workflow file for this run

name: .NET Testing
on:
pull_request:
branches:
- '**'
jobs:
test:
name: Test (.NET)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: bufbuild/buf-setup-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- uses: extractions/setup-just@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
- name: Setup dotnet tools
run: dotnet tool restore
- name: Generate gRPC code
run: just generate-grpc
- name: Test
run: dotnet test --configuration Release
result:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Results
needs: [ test ]
steps:
- run: |
result="${{ needs.test.result }}"
if [[ $result == "success" || $result == "skipped" ]]; then
exit 0
else
exit 1
fi