We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f9ca6c commit 82d0016Copy full SHA for 82d0016
2 files changed
.github/workflows/ci.yml
@@ -1,10 +1,6 @@
1
name: Build and Test
2
3
-on:
4
- push:
5
- branches: ["main"]
6
- pull_request:
7
+on: [push, pull_request]
8
9
jobs:
10
build:
.github/workflows/lint.yml
@@ -0,0 +1,22 @@
+name: Linter Checks
+
+jobs:
+ check-formatting:
+ runs-on: "ubuntu-latest"
+ steps:
+ - name: Clone the repo
11
+ uses: actions/checkout@v4
12
13
+ - name: Set up .NET
14
+ uses: actions/setup-dotnet@v4
15
+ with:
16
+ dotnet-version: 9.0.x
17
18
+ - name: Restore tools
19
+ run: dotnet tool restore
20
21
+ - name: Run CSharpier
22
+ run: dotnet csharpier --check .
0 commit comments