- add github actions ci.yml file

pull/32/head
Simon G 6 years ago committed by GitHub
parent 80324260d9
commit 3653c4a1f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      .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
Loading…
Cancel
Save