diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..db5296a --- /dev/null +++ b/.github/workflows/ci.yml @@ -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 +