Skip to content

[Fix] Properly stop polling #350

[Fix] Properly stop polling

[Fix] Properly stop polling #350

Workflow file for this run

name: Build & test
on:
push:
paths:
- 'TGBotFramework/BotFramework/**'
- 'TGBotFramework/BotFramework.Tests/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Restore dependencies
run: |
cd TGBotFramework/BotFramework
dotnet restore
- name: Build
run: |
cd TGBotFramework/BotFramework
dotnet build --no-restore
- name: Test
run: |
cd TGBotFramework/BotFramework.Tests
dotnet test --no-build --verbosity normal