Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
fbe5033f
Unverified
Commit
fbe5033f
authored
Dec 16, 2020
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
Dec 16, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5224 from jbampton/lint-yaml
feat(CI): add a GitHub Action to lint the YAML
parents
8f8e8327
aa6fc8c3
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
129 additions
and
110 deletions
+129
-110
.github/workflows/build.yml
.github/workflows/build.yml
+52
-52
.github/workflows/codeql-analysis.yml
.github/workflows/codeql-analysis.yml
+37
-37
.github/workflows/lint.yml
.github/workflows/lint.yml
+12
-0
.github/workflows/main.yml
.github/workflows/main.yml
+17
-18
.gitlab-ci.yml
.gitlab-ci.yml
+3
-3
.yamllint
.yamllint
+8
-0
No files found.
.github/workflows/build.yml
View file @
fbe5033f
.github/workflows/codeql-analysis.yml
View file @
fbe5033f
...
...
@@ -43,7 +43,7 @@ jobs:
# and modify them (or add more) to build your code if your project
# uses a compiled language
#
- run: |
#
- run: |
# make bootstrap
# make release
...
...
.github/workflows/lint.yml
0 → 100644
View file @
fbe5033f
name
:
❄️ Lint
on
:
[
pull_request
]
jobs
:
yamllint
:
name
:
🍶 YAML
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
🧹 YAML Lint
uses
:
ibiqlik/action-yamllint@v3
.github/workflows/main.yml
View file @
fbe5033f
...
...
@@ -21,4 +21,3 @@ jobs:
with
:
name
:
artifacts
path
:
./out/artifacts
.gitlab-ci.yml
View file @
fbe5033f
---
stages
:
-
pretest
-
test
-
pretest
-
test
pretest
:
stage
:
pretest
image
:
registry.gitlab.com/dabroz/mruby:gcc47_0.1
...
...
.yamllint
0 → 100644
View file @
fbe5033f
---
extends: default
rules:
document-start: disable
line-length: disable
truthy: false
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment