From 22825c09a86bef9e0e5aefa40685160fb1434c99 Mon Sep 17 00:00:00 2001 From: Sanjay-python27 Date: Fri, 28 Aug 2026 10:34:09 +0530 Subject: [PATCH 1/2] Fix workflow file --- .github/workflows/lint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4ce0ec7..eaf5f2d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,7 +9,7 @@ on: workflow_dispatch: jobs: - Linting-check: + linting-check: runs-on: ubuntu-latest steps: @@ -22,10 +22,10 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-verson: "3.13" + python-version: "3.13" - name: Install Ruff - run: python -m pip install Ruff + run: python -m pip install ruff - name: Run Ruff run: ruff check . From 2cb232fc9dcf10f5eeee42e63be73a99f6258307 Mon Sep 17 00:00:00 2001 From: Sanjay-python27 Date: Fri, 28 Aug 2026 10:37:01 +0530 Subject: [PATCH 2/2] Change main to master in workflow --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index eaf5f2d..23d3fa6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,7 +4,7 @@ on: pull_request: branches: - github-actions-tutorial - - main + - master workflow_dispatch: