Skip to content

v0.4.0: Added scroll to top and enhanced modern styles (#11) #61

v0.4.0: Added scroll to top and enhanced modern styles (#11)

v0.4.0: Added scroll to top and enhanced modern styles (#11) #61

Workflow file for this run

name: Build
on:
push:
branches: [dev, main]
tags: ['v*.*.*']
paths-ignore: ['**/*.md', '**/*.png', '**/*.txt']
pull_request:
branches: [dev, main]
types: [opened, reopened]
env:
CONFIGURATION: 'Release'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration ${{ env.CONFIGURATION }}