Skip to content

Commit f768c33

Browse files
authored
Merge branch 'main' into master
2 parents 53d44d1 + a08fb62 commit f768c33

File tree

1,018 files changed

+41282
-6574
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,018 files changed

+41282
-6574
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: 'Setup Language'
2+
description: 'Set up the environment for the specified language'
3+
inputs:
4+
language:
5+
description: 'The programming language to set up'
6+
required: true
7+
runs:
8+
using: 'composite'
9+
steps:
10+
- name: Set up Go
11+
uses: actions/setup-go@v5
12+
if: ${{ matrix.language == 'go' }}
13+
with:
14+
go-version: '1.23'
15+
- uses: actions/setup-node@v4
16+
if: ${{matrix.language == 'typescript'}}
17+
with:
18+
node-version: 20
19+
- uses: actions/setup-java@v4
20+
if: ${{matrix.language == 'java'}}
21+
with:
22+
distribution: 'corretto'
23+
java-version: '17'
24+
- uses: actions/setup-python@v5
25+
if: ${{matrix.language == 'python'}}
26+
with:
27+
python-version: '3.12'
28+
- uses: actions/setup-dotnet@v4
29+
if: ${{matrix.language == 'csharp'}}
30+
with:
31+
dotnet-version: 8

.github/extract-snippets/README-SNIPPETS.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/extract-snippets/README.md

Lines changed: 0 additions & 269 deletions
This file was deleted.

0 commit comments

Comments
 (0)