Skip to content

Merge pull request #21 from stprograms/16_update_telegram #8

Merge pull request #21 from stprograms/16_update_telegram

Merge pull request #21 from stprograms/16_update_telegram #8

Workflow file for this run

name: .NET Test and Build
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
container: mcr.microsoft.com/dotnet/sdk:8.0
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run tests
run: dotnet test
build:
needs: test
runs-on: ubuntu-latest
container: mcr.microsoft.com/dotnet/sdk:8.0
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build application
run: dotnet build