From 3da691fd839500eb37d1e5bdbec8e07d6bfadd44 Mon Sep 17 00:00:00 2001 From: Cecilia Date: Sun, 24 Mar 2024 17:16:34 +0100 Subject: [PATCH 1/2] test: testing linting implementation --- .github/workflows/quality.yml | 3 +++ csharp-minitwit/Directory.Build.props | 10 ++++++++++ 2 files changed, 13 insertions(+) create mode 100644 csharp-minitwit/Directory.Build.props diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 8498126..4c7c341 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -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 From 57dd543abcf80e12f30b23d4d9a8e87e835ee4e0 Mon Sep 17 00:00:00 2001 From: Eleonora Borovic <89137171+ebrvc@users.noreply.github.com> Date: Sun, 24 Mar 2024 16:45:47 +0100 Subject: [PATCH 2/2] fix: Update quality.yml --- .github/workflows/quality.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 4c7c341..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: