Skip to content

Commit

Permalink
Add github Action
Browse files Browse the repository at this point in the history
Thanks to Hangfire.RecurringJobAdmin
  • Loading branch information
felixclase committed Nov 21, 2019
1 parent 1f436cc commit e3927af
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .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

0 comments on commit e3927af

Please sign in to comment.