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:
-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