Skip to content

Workflow file for this run

name: Dotnet build app
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
main:
strategy:
fail-fast: false
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
working-directory: src/Botinok/
run: dotnet restore
- name: Build
working-directory: src/Botinok/
run: dotnet build