-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
936a079
commit 3159ab7
Showing
121 changed files
with
15,412 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: go lint | ||
on: [push] | ||
jobs: | ||
sdk-go-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: git clone | ||
uses: actions/checkout@v4 | ||
|
||
- name: set up go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.21.6 | ||
|
||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v4 | ||
with: | ||
version: v1.54.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: go test | ||
on: [push] | ||
jobs: | ||
sdk-go-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: git clone | ||
uses: actions/checkout@v4 | ||
|
||
- name: set up go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.21.1 | ||
|
||
- name: go test | ||
run: go test ./... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: json lint | ||
on: [push] | ||
jobs: | ||
sdk-json-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: git clone | ||
uses: actions/checkout@v4 | ||
|
||
- name: set up node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.8 | ||
|
||
- name: install prettier | ||
run: npm install [email protected] --global | ||
|
||
- name: lint .json files with prettier | ||
run: prettier -c "**/*.json" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: markdown lint | ||
on: [push] | ||
jobs: | ||
sdk-markdown-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: git clone | ||
uses: actions/checkout@v4 | ||
|
||
- uses: DavidAnson/markdownlint-cli2-action@v7 | ||
with: | ||
globs: "**/*.md" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"stops": [ | ||
{ | ||
"id": "Fushimi Inari Taisha", | ||
"location": { "lon": 135.772695, "lat": 34.967146 } | ||
}, | ||
{ | ||
"id": "Kiyomizu-dera", | ||
"location": { "lon": 135.78506, "lat": 34.994857 } | ||
}, | ||
{ | ||
"id": "Nijō Castle", | ||
"location": { "lon": 135.748134, "lat": 35.014239 } | ||
}, | ||
{ | ||
"id": "Kyoto Imperial Palace", | ||
"location": { "lon": 135.762057, "lat": 35.025431 } | ||
}, | ||
{ | ||
"id": "Gionmachi", | ||
"location": { "lon": 135.775682, "lat": 35.002457 } | ||
}, | ||
{ | ||
"id": "Kinkaku-ji", | ||
"location": { "lon": 135.728898, "lat": 35.039705 } | ||
}, | ||
{ | ||
"id": "Arashiyama Bamboo Forest", | ||
"location": { "lon": 135.672009, "lat": 35.017209 } | ||
} | ||
], | ||
"vehicles": [ | ||
{ | ||
"id": "v1", | ||
"start_location": { "lon": 135.672009, "lat": 35.017209 }, | ||
"speed": 20 | ||
} | ||
] | ||
} |
Oops, something went wrong.