Commit a9c8e88

mo khan <mokhan@users.noreply.github.com>
2019-10-21 04:20:25
Update and rename blank.yml to ci.yml
1 parent 9cb4458
Changed files (1)
.github
workflows
.github/workflows/ci.yml
@@ -0,0 +1,17 @@
+name: CI
+
+on: [push]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest   
+    steps:
+    - uses: actions/checkout@v1
+    - name: Install dotnet core
+      run: |
+        wget -q https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb
+        sudo dpkg -i packages-microsoft-prod.deb
+        sudo apt-get update
+        sudo apt-get install -y dotnet-sdk-3.0
+    - name: Run tests
+      run: dotnet test