Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Tom Yan
archiso
Commits
2993b808
Verified
Commit
2993b808
authored
Jul 16, 2020
by
nl6720
Browse files
Add GitHub Actions workflow
.github/workflows/lint.yml: Run `make check`.
parent
ecd33927
Changes
1
Hide whitespace changes
Inline
Side-by-side
.github/workflows/lint.yml
0 → 100644
View file @
2993b808
# This is a basic workflow to help you get started with Actions
name
:
CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on
:
push
:
branches
:
[
'
*'
]
pull_request
:
branches
:
[
master
]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs
:
# This workflow contains a single job called "build"
lint
:
# The type of runner that the job will run on
runs-on
:
ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps
:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
-
uses
:
actions/checkout@v2
# Runs a single command using the runners shell
-
name
:
shellcheck
run
:
make check
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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