Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
golang
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitLab
CI
golang
Compare revisions
776a62d972c94772e33abab055c6accab6137be6 to 6b219f768126854ec707483f9080f28216d3264c
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
gitlab/ci/golang
Select target project
No results found
6b219f768126854ec707483f9080f28216d3264c
Select Git revision
Branches
main
1 result
Swap
Target
gitlab/ci/golang
Select target project
gitlab/ci/golang
1 result
776a62d972c94772e33abab055c6accab6137be6
Select Git revision
Branches
main
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Fix linting
· 33bced78
Erick Hitter
authored
3 months ago
33bced78
Merge branch 'fix/linting' into 'main'
· 6b219f76
Erick Hitter
authored
3 months ago
Fix linting See merge request
!8
6b219f76
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.ci-scripts/lint.sh
+1
-1
1 addition, 1 deletion
.ci-scripts/lint.sh
.gitlab-ci.yml
+3
-0
3 additions, 0 deletions
.gitlab-ci.yml
with
4 additions
and
1 deletion
.ci-scripts/lint.sh
View file @
6b219f76
#!/bin/bash
jq
--null-input
--arg
yaml
"
$1
"
'.content=$yaml'
\
| curl
"https://git.ethitter.com/api/v4/ci/lint?include_merged_yaml=true"
\
| curl
"https://git.ethitter.com/api/v4/
projects/
${
CI_PROJECT_ID
}
/
ci/lint?include_merged_yaml=true"
\
--silent
\
--header
'Content-Type: application/json'
\
--header
"PRIVATE-TOKEN:
$GITLAB_API_PAT
"
\
...
...
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
View file @
6b219f76
...
...
@@ -10,3 +10,6 @@ lint:
image
:
containers.ethitter.com:443/docker/images/debian:bullseye
script
:
-
sh ./.ci-scripts/lint.sh "$(<./files/default.yml)"
artifacts
:
paths
:
-
result.json
\ No newline at end of file
This diff is collapsed.
Click to expand it.