Skip to content

Add formatter Ci files #22

Add formatter Ci files

Add formatter Ci files #22

Workflow file for this run

name: dotnet format
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
check-code-formatting:
runs-on: self-hosted
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Creating project
run: dotnet new classlib --name JamGame --output ./JamGame
- name: Deleting garbage
run: rm ./JamGame/Class1.cs
- name: Add .editorconfig
run: wget -O JamGame/.editorconfig https://raw.githubusercontent.com/mertwole/miniature-happiness/main/JamGame/.editorconfig
- name: Check content
run: |
ls -a -l JamGame
cat JamGame/.editorconfig
- name: Install csharpier locally
run: |
dotnet new tool-manifest
dotnet tool install --local csharpier
- name: Check versions
run: |
dotnet format --version
dotnet csharpier --version
- name: Run dotnet format
run: dotnet format JamGame/JamGame.csproj --verify-no-changes --include JamGame/Assets/Scripts -v d
- name: Run csharpier format
run: dotnet csharpier --config-path "JamGame/.csharpierrc.json" 'JamGame\Assets\Scripts\' --check