Skip to content

Commit de00b32

Browse files
committed
SDK regeneration
1 parent 7a1f35d commit de00b32

File tree

954 files changed

+118815
-2572
lines changed

Some content is hidden

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

954 files changed

+118815
-2572
lines changed

.circleci/config.yml

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

.codeclimate.yml

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

.editorconfig

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

.fernignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Specify files that shouldn't be modified by Fern

.gitattributes

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

.github/ISSUE_TEMPLATE.md

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

.github/PULL_REQUEST_TEMPLATE.md

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

.github/dependabot.yml

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

.github/workflows/ci.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: ci
2+
3+
on: [push]
4+
5+
jobs:
6+
compile:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repo
11+
uses: actions/checkout@v4
12+
13+
- name: Setup PHP
14+
uses: shivammathur/setup-php@v2
15+
with:
16+
php-version: "8.1"
17+
18+
- name: Install tools
19+
run: |
20+
composer install
21+
22+
- name: Build
23+
run: |
24+
composer build
25+
26+
- name: Analyze
27+
run: |
28+
composer analyze
29+
30+
unit-tests:
31+
runs-on: ubuntu-latest
32+
33+
steps:
34+
- name: Checkout repo
35+
uses: actions/checkout@v4
36+
37+
- name: Setup PHP
38+
uses: shivammathur/setup-php@v2
39+
with:
40+
php-version: "8.1"
41+
42+
- name: Install tools
43+
run: |
44+
composer install
45+
46+
- name: Run Tests
47+
run: |
48+
composer test

.github/workflows/label-ai-generated-prs.yml

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

0 commit comments

Comments
 (0)