Skip to content

Commit 5d1d276

Browse files
committed
SDK regeneration
1 parent 6c80937 commit 5d1d276

File tree

4,665 files changed

+158431
-342746
lines changed

Some content is hidden

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

4,665 files changed

+158431
-342746
lines changed

.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 & 1 deletion
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/config.yml

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

.github/labeler.yml

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

.github/pull_request_template.md

Lines changed: 0 additions & 4 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/php.yml

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

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
composer.phar
2-
composer.lock
3-
vendor/
1+
.idea
2+
.php-cs-fixer.cache
43
.phpunit.result.cache
5-
coverage/
4+
composer.lock
5+
vendor/

.phan/config.php

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

0 commit comments

Comments
 (0)