Skip to content

Commit

Permalink
Merge pull request #4 from alexvaluyskiy/github-actions
Browse files Browse the repository at this point in the history
Github Actions
  • Loading branch information
alexvaluyskiy authored Jan 8, 2020
2 parents 4a854f7 + 607c436 commit 9e20ab8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"isRoot": true,
"tools": {
"gitversion.tool": {
"version": "5.1.2",
"version": "5.1.3",
"commands": [
"dotnet-gitversion"
]
}
}
}
}
20 changes: 20 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: run-tests

on:
push:
branches: master
pull_request:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.0.100
- name: dotnet test
run: dotnet test -c "Release"

0 comments on commit 9e20ab8

Please sign in to comment.