Skip to content

Commit

Permalink
Use GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof-Cieslak committed May 26, 2020
1 parent 11a37d7 commit 97d2351
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 58 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

on: [push, pull_request]

jobs:
build:

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

steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore tools
run: dotnet tool restore
- name: Run Test
run: dotnet fake build -t Test
57 changes: 0 additions & 57 deletions azure-pipelines.yml

This file was deleted.

2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "3.1.200"
"version": "3.1.201"
}
}

0 comments on commit 97d2351

Please sign in to comment.