diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml new file mode 100644 index 0000000..1e3e1d8 --- /dev/null +++ b/.github/workflows/dotnet.yml @@ -0,0 +1,28 @@ +name: .NET + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Setup .NET + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 5.0.x + - name: Restore dependencies + run: dotnet restore + working-directory: CIE.AspNetCore.Authentication + - name: Build + run: dotnet build --no-restore + working-directory: CIE.AspNetCore.Authentication + - name: Test + run: dotnet test --no-build --verbosity normal + working-directory: CIE.AspNetCore.Authentication