Skip to content

Commit

Permalink
Merge pull request #7 from wilcommerce/github-actions-build
Browse files Browse the repository at this point in the history
Create build.yml
  • Loading branch information
albx authored Sep 1, 2020
2 parents 7b250c3 + ae3c75d commit aaea34d
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Wilcommerce Core EF Core Build

on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.301
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal

0 comments on commit aaea34d

Please sign in to comment.