Skip to content

Commit

Permalink
add format check action
Browse files Browse the repository at this point in the history
  • Loading branch information
nasshu2916 committed Oct 18, 2024
1 parent 1ff8ca3 commit 6617d47
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Format check
on:
push:

jobs:
format_check:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Check formatting
run: dotnet format whitespace ./ArtNet-Unity.sln --verify-no-changes

0 comments on commit 6617d47

Please sign in to comment.