Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fengzch-das
multibuild
Commits
db109f77
Unverified
Commit
db109f77
authored
Feb 15, 2022
by
multibuilder
Committed by
GitHub
Feb 15, 2022
Browse files
Create test.yml
parent
c24023a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
.github/workflows/test.yml
.github/workflows/test.yml
+36
-0
No files found.
.github/workflows/test.yml
0 → 100644
View file @
db109f77
# This is a basic workflow to help you get started with Actions
name
:
Test
# Controls when the workflow will run
on
:
# Triggers the workflow on push or pull request events but only for the devel branch
push
:
branches
:
[
devel
]
pull_request
:
branches
:
[
devel
]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch
:
# 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"
build
:
# 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
:
Run a one-line script
run
:
echo Hello, world!
# Runs a set of commands using the runners shell
-
name
:
Run a multi-line script
run
:
|
echo Add other actions to build,
echo test, and deploy your project.
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