Skip to content

Ensure visits can be counted #21

Ensure visits can be counted

Ensure visits can be counted #21

name: πŸš₯ .NET Format check
on:
pull_request:
paths:
- '**.cs'
workflow_dispatch:
jobs:
main:
name: πŸš₯ .NET Format check
runs-on: ubuntu-latest
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_NOLOGO: 1
steps:
- name: πŸ“¦ Checkout
uses: actions/checkout@v4
- name: πŸ”© Set up .NET environment
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
- name: πŸ“¦ Restore Dependencies
run: |
dotnet restore
dotnet msbuild -t:DownloadInkDependency -p:Configuration=Debug
- name: πŸ”¬ Verify style, whitespaces, and run diagnostics
run: dotnet format --verify-no-changes GodotInk.csproj