Skip to content

Commit ef147be

Browse files
committed
ci: add no-op workflows for testing generation of apps on different languages
Part of #13 Part of #30
1 parent 47b76aa commit ef147be

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

.github/generate-go-app.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Generate Golang app
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
run-checkstyle:
8+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
9+
runs-on: ubuntu-20.04
10+
steps:
11+
- name: Clone source code
12+
uses: actions/[email protected] # https://github.com/actions/checkout
13+
with:
14+
# Whether to configure the token or SSH key with the local git config. Default: true
15+
persist-credentials: false

.github/generate-js-app.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Generate JavaScript app
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
run-checkstyle:
8+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
9+
runs-on: ubuntu-20.04
10+
steps:
11+
- name: Clone source code
12+
uses: actions/[email protected] # https://github.com/actions/checkout
13+
with:
14+
# Whether to configure the token or SSH key with the local git config. Default: true
15+
persist-credentials: false

.github/generate-python-app.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Generate Python app
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
run-checkstyle:
8+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
9+
runs-on: ubuntu-20.04
10+
steps:
11+
- name: Clone source code
12+
uses: actions/[email protected] # https://github.com/actions/checkout
13+
with:
14+
# Whether to configure the token or SSH key with the local git config. Default: true
15+
persist-credentials: false

0 commit comments

Comments
 (0)