Skip to content

Commit

Permalink
test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
azyobuzin committed Oct 14, 2020
1 parent 03250bb commit 0c8c33e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Test

on: push

jobs:
test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2

- name: dotnet restore
run: dotnet restore
working-directory: tests/BiDaFlow.Tests

- name: dotnet test
run: dotnet test --no-restore --verbosity normal
working-directory: tests/BiDaFlow.Tests

0 comments on commit 0c8c33e

Please sign in to comment.