Skip to content

Commit 0653380

Browse files
committed
Merge branch 'feature/github-actions' into develop
2 parents aecfc27 + cb338f5 commit 0653380

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/cmake.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
# branches:
77
# - main
88
# paths:
9-
# - "cpp-algorithm/**"
9+
# - 'cpp-algorithm/**'
1010
# schedule:
11-
# - cron: "0 0 * * *"
11+
# - cron: '0 0 * * *'
1212
workflow_dispatch:
1313

1414
env:

.github/workflows/gradle.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
# branches:
77
# - main
88
# paths:
9-
# - "java-algorithm/**"
9+
# - 'java-algorithm/**'
1010
# schedule:
11-
# - cron: "0 0 * * *"
11+
# - cron: '0 0 * * *'
1212
workflow_dispatch:
1313

1414
jobs:
@@ -21,8 +21,8 @@ jobs:
2121
- name: Setup JDK
2222
uses: actions/setup-java@v4
2323
with:
24-
distribution: "zulu"
25-
java-version: "21"
24+
distribution: 'temurin'
25+
java-version: '21'
2626

2727
- name: Setup Gradle
2828
uses: gradle/gradle-build-action@v3

.github/workflows/poetry.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
# branches:
77
# - main
88
# paths:
9-
# - "python-algorithm/**"
9+
# - 'python-algorithm/**'
1010
# schedule:
11-
# - cron: "0 0 * * *"
11+
# - cron: '0 0 * * *'
1212
workflow_dispatch:
1313

1414
jobs:
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Python
2222
uses: actions/setup-python@v5
2323
with:
24-
python-version: "3.11"
24+
python-version: '3.12'
2525

2626
- name: Install dependencies
2727
working-directory: ${{github.workspace}}/python-algorithm

0 commit comments

Comments
 (0)