diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 8498126..6eaa91e 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -1,7 +1,7 @@ name: Format check on push on: pull_request: - - types: [opened, reopened, edited, synchronize, ready_for_review] + types: [opened, reopened, edited, synchronize, ready_for_review] # branches: # - feature/software-quality-tools jobs: @@ -32,3 +32,6 @@ jobs: git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY git commit -am "Automated formatting" git push + + - name: Lint C# code + run: dotnet build \ No newline at end of file diff --git a/csharp-minitwit/Directory.Build.props b/csharp-minitwit/Directory.Build.props new file mode 100644 index 0000000..8089576 --- /dev/null +++ b/csharp-minitwit/Directory.Build.props @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file