Skip to content

Commit

Permalink
Github actions support .net CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
helto4real committed Mar 23, 2020
1 parent a5c397c commit 9f5b56a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#### Build and tests all pushes, also code coverage
name: CI build
on: [push, pull_request]
jobs:
build:
name: Build sources
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-dotnet@v1
- name: Build code
run: dotnet build
- name: Test code
run: dotnet test
1 change: 0 additions & 1 deletion .github/workflows/push_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- master
- order

jobs:
deploy:
Expand Down

0 comments on commit 9f5b56a

Please sign in to comment.