Skip to content

feat: basic auth for all api endpoints #28

feat: basic auth for all api endpoints

feat: basic auth for all api endpoints #28

Workflow file for this run

name: Verify Pull Request
on:
pull_request:
paths:
- '**.cs'
- 'nuget.config'
- 'thunderstore.toml'
- 'v-rising-discord-bot-companion.csproj'
permissions:
contents: read
jobs:
verify:
name: Verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.x
dotnet-quality: 'ga'
- name: Restore Dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --verbosity normal