From e3927af1ff26a41313ddcd621e1eec336158275a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Clase?= Date: Wed, 20 Nov 2019 21:40:10 -0400 Subject: [PATCH] Add github Action Thanks to Hangfire.RecurringJobAdmin --- .github/workflows/dotnetcore.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/dotnetcore.yml diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml new file mode 100644 index 0000000..07197d4 --- /dev/null +++ b/.github/workflows/dotnetcore.yml @@ -0,0 +1,30 @@ +name: CI-HS-SQLITE + +on: + pull_request: + branches: + - master + - develop + push: + branches: + - master + - develop +jobs: + build: + strategy: + matrix: + os: + - macOS-latest + - ubuntu-latest + - windows-latest + + runs-on: ${{matrix.os}} + + steps: + - uses: actions/checkout@v1 + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 2.2.108 + - name: Build with dotnet + run: dotnet build --configuration Release