Skip to content

add github pipeline

add github pipeline #7

Workflow file for this run

name: External Worker Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build