mirror of https://github.com/abpframework/abp
commit
128fded359
@ -0,0 +1,28 @@
|
||||
name: "Main"
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- "framework/**"
|
||||
- "modules/**"
|
||||
- "templates/**"
|
||||
push:
|
||||
paths:
|
||||
- "framework/**"
|
||||
- "modules/**"
|
||||
- "templates/**"
|
||||
jobs:
|
||||
build-test:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions/setup-dotnet@master
|
||||
with:
|
||||
dotnet-version: "3.1.100"
|
||||
|
||||
- name: Build All
|
||||
run: .\build-all.ps1
|
||||
shell: pwsh
|
||||
|
||||
- name: Test All
|
||||
run: .\test-all.ps1
|
||||
shell: pwsh
|
||||
Loading…
Reference in new issue