Skip to content

fix github workflows. #15

fix github workflows.

fix github workflows. #15

Workflow file for this run

name: Build
on:
push:
branches: [ releases/8.x ]
pull_request:
branches: [ releases/8.x ]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore ./src/AspNetCore.Identity.Mongo/
- name: Build
run: dotnet build ./src/AspNetCore.Identity.Mongo/ -c Release --no-restore
- name: Test
run: dotnet test ./Tests -c Release