mirror of https://github.com/abpframework/abp
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.
25 lines
455 B
25 lines
455 B
name: 'Main'
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'framework/**'
|
|
- 'modules/**'
|
|
branches:
|
|
- dev
|
|
jobs:
|
|
build-test:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-dotnet@master
|
|
with:
|
|
dotnet-version: '3.0.100'
|
|
|
|
- name: Build All
|
|
run: .\build-all.ps1
|
|
shell: pwsh
|
|
|
|
- name: Test All
|
|
run: .\test-all.ps1
|
|
shell: pwsh
|