Skip to content

Commit

Permalink
Create dotnet-core.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
just-seba authored Jul 22, 2020
1 parent 9d3004a commit 35bb632
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: .NET Core

on:
push:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout this repository
uses: actions/checkout@v2
- name: checkout FontAwesome
uses: actions/checkout@v2
with:
repository: https://github.com/FortAwesome/Font-Awesome.git
path: src/valonia.Icons.FontAwesome/font-awesome
- 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

0 comments on commit 35bb632

Please sign in to comment.