Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jb@evain.net>2019-08-30 04:03:08 +0300
committerGitHub <noreply@github.com>2019-08-30 04:03:08 +0300
commitd9639f6909f45e29c6cda51e6a8fe73af345d0f1 (patch)
tree57b4fa1133551a3726f59f34eec7c94af2110f37
parentdcc3c632a754ccdfb65d4fb6b41eb0b99eb34da5 (diff)
Add github action CI
-rw-r--r--main.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/main.yml b/main.yml
new file mode 100644
index 0000000..dccfabf
--- /dev/null
+++ b/main.yml
@@ -0,0 +1,21 @@
+name: CI
+
+on:
+ push:
+ branches:
+ - master
+ - release/*
+ pull_request:
+ branches:
+ - master
+ - release/*
+
+jobs:
+ linux:
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout@v1
+ - name: Build
+ run: dotnet build -c Debug Mono.Cecil.sln
+ - name: Test
+ run: dotnet test --no-build -c Debug Mono.Cecil.sln