Implemented auth0 client credential flow and updated version #28
Workflow file for this run
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
name: Fancy.ResourceLinker.Models | |
on: | |
push: | |
paths: | |
- 'src/Fancy.ResourceLinker.Models/**' | |
- 'src/Fancy.ResourceLinker.Models.UTest/**' | |
- 'src/Fancy.ResourceLinker.Models.ITest/**' | |
- '.github/workflows/Fancy.ResourceLinker.Models.yaml' | |
pull_request: | |
paths: | |
- 'src/Fancy.ResourceLinker.Models/**' | |
- 'src/Fancy.ResourceLinker.Models.UTest/**' | |
- 'src/Fancy.ResourceLinker.Models.ITest/**' | |
- '.github/workflows/Fancy.ResourceLinker.Models.yaml' | |
jobs: | |
buid: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout repository | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Install the .NET Core workload | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
# Build library | |
- name: Build library | |
run: | | |
cd ./src/Fancy.ResourceLinker.Models/ | |
dotnet build | |
# Execute all unit tests | |
- name: Execute unit tests | |
run: | | |
cd ./src/Fancy.ResourceLinker.Models.UTest/ | |
dotnet test | |
# Execute all integration tests | |
- name: Execute integration tests | |
run: | | |
cd ./src/Fancy.ResourceLinker.Models.ITest/ | |
dotnet test | |