From cd7c2a783f1f153b5838a22d1ff736e8cdcc325b Mon Sep 17 00:00:00 2001 From: "anatoly.shipitz" Date: Thu, 17 Apr 2025 11:59:04 +0200 Subject: [PATCH 1/3] Add code quality workflow for linting on pull requests and main branch pushes --- .github/workflows/code-quality.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/code-quality.yml diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml new file mode 100644 index 0000000..e13df86 --- /dev/null +++ b/.github/workflows/code-quality.yml @@ -0,0 +1,19 @@ +name: Code Quality + +on: + pull_request: + types: [synchronize, opened, reopened] + push: + branches: + - main + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Lint + run: echo "Linting..." + \ No newline at end of file From f4bb1e2b7edd403b93aa027dfca6c535421a5173 Mon Sep 17 00:00:00 2001 From: anatolyshipitz <30830673+anatolyshipitz@users.noreply.github.com> Date: Thu, 17 Apr 2025 12:11:04 +0200 Subject: [PATCH 2/3] Update .github/workflows/code-quality.yml do it Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- .github/workflows/code-quality.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index e13df86..a4080f1 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -12,8 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - + - uses: actions/checkout@v4 - name: Lint run: echo "Linting..." \ No newline at end of file From c4308fb322008e6951986de5f54bccf36e97eb68 Mon Sep 17 00:00:00 2001 From: anatolyshipitz <30830673+anatolyshipitz@users.noreply.github.com> Date: Thu, 17 Apr 2025 12:17:47 +0200 Subject: [PATCH 3/3] Update .github/workflows/code-quality.yml add newline Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- .github/workflows/code-quality.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index a4080f1..d7c8e80 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -14,5 +14,4 @@ jobs: steps: - uses: actions/checkout@v4 - name: Lint - run: echo "Linting..." - \ No newline at end of file + run: echo "Linting..." \ No newline at end of file