You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
505 B
20 lines
505 B
name: Unit Test
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
AbpVnextPrc-CI:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install Dotnet 6.x
|
|
uses: actions/setup-dotnet@v1
|
|
with:
|
|
dotnet-version: "6.0"
|
|
include-prerelease: True
|
|
- name: Build
|
|
run: dotnet build aspnet-core/Lion.AbpPro.sln
|
|
- name: Test
|
|
run: dotnet test aspnet-core/services/test/Lion.AbpPro.Domain.Tests/Lion.AbpPro.Domain.Tests.csproj
|
|
|