Skip to content

Commit 0750627

Browse files
committed
Enable GitHub Actions
1 parent 0d8282c commit 0750627

File tree

7 files changed

+35
-19
lines changed

7 files changed

+35
-19
lines changed
+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Unity Meta Check
2+
on:
3+
push:
4+
branches:
5+
- github-actions
6+
7+
jobs:
8+
unity-meta-check:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
# NOTE: Test no arguments
13+
- uses: DeNA/unity-meta-check@github-actions
14+
15+
# NOTE: Test full features
16+
- uses: DeNA/unity-meta-check@github-actions
17+
with:
18+
log_level: DEBUG
19+
ignored_file_path: .meta-check-ignore
20+
enable_autofix: true
21+
autofix_globs: .
22+
enable_junit: true
23+
junit_xml_path: junit.xml
24+
enable_pr_comment: true
25+
pr_comment_lang: ja
26+
pr_comment_owner: DeNA
27+
pr_comment_repo: unity-meta-check-playground
28+
pr_comment_pull: 2
29+
pr_comment_send_success: true
30+
if: always()
31+
32+
- uses: mikepenz/action-junit-report@v2
33+
with:
34+
report_paths: junit.xml

.meta-check-ignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Ignored

Dangling.meta

Whitespace-only changes.

Ignored

Whitespace-only changes.

LICENSE

-7
This file was deleted.

Missing

Whitespace-only changes.

README.md

-12
This file was deleted.

0 commit comments

Comments
 (0)