Merge branch 'master' of https://github.com/SimonG96/LightweightIocContainer
commit
4bee6240dd
1 changed files with 26 additions and 0 deletions
@ -0,0 +1,26 @@ |
||||
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: Checkout |
||||
uses: actions/checkout@v1 |
||||
- name: Run tests |
||||
run: dotnet test |
||||
|
||||
Loading…
Reference in new issue