parent
80324260d9
commit
3653c4a1f0
1 changed files with 24 additions and 0 deletions
@ -0,0 +1,24 @@ |
|||||||
|
name: CI |
||||||
|
|
||||||
|
on: [push] |
||||||
|
|
||||||
|
jobs: |
||||||
|
build: |
||||||
|
Name: Build |
||||||
|
runs-on: windows-latest |
||||||
|
|
||||||
|
steps: |
||||||
|
- name: Checkout |
||||||
|
- uses: actions/checkout@v1 |
||||||
|
- name: Build |
||||||
|
run: dotnet build |
||||||
|
|
||||||
|
test: |
||||||
|
Name: Test |
||||||
|
needs: build |
||||||
|
runs-on: windows-latest |
||||||
|
|
||||||
|
steps: |
||||||
|
- name: Run tests |
||||||
|
run: dotnet test --no-build Test.LightweightIocContainer |
||||||
|
|
||||||
Loading…
Reference in new issue