Skip to content

Commit

Permalink
Update backend-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pdr21001 authored Apr 26, 2025
1 parent f5d3b5c commit 5b7dfaa
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:
working-directory: backend

steps:
- name: Checkout code without submodules
uses: actions/checkout@v2
with:
submodules: false # This skips submodule initialization

- name: Set up Python
uses: actions/setup-python@v2
with:
Expand Down Expand Up @@ -54,13 +59,10 @@ jobs:
needs: lint

steps:
- name: Checkout code
- name: Checkout code without submodules
uses: actions/checkout@v2
with:
submodules: false
clean: true
fetch-depth: 0
persist-credentials: false
submodules: false # This skips submodule initialization

- name: Set up Python
uses: actions/setup-python@v2
Expand Down Expand Up @@ -116,13 +118,10 @@ jobs:
needs: [lint, test]

steps:
- name: Checkout repository
- name: Checkout repository without submodules
uses: actions/checkout@v2
with:
submodules: false
clean: true
fetch-depth: 0
persist-credentials: false
submodules: false # This skips submodule initialization

- name: Set up Node.js
uses: actions/setup-node@v3
Expand Down

0 comments on commit 5b7dfaa

Please sign in to comment.