Skip to content

Commit 5c0907b

Browse files
authored
Merge pull request #175 from open-source-labs/pmhua-patch-2
test
2 parents 4ae8410 + 6dd7ca8 commit 5c0907b

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/main.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: CI
4+
5+
env:
6+
GITHUB_ID: ${{secrets.ID}}
7+
GITHUB_SECRET: ${{secrets.SECRET}}
8+
# Controls when the workflow will run
9+
on:
10+
# Triggers the workflow on push or pull request events but only for the master branch
11+
push:
12+
branches: [ master ]
13+
pull_request:
14+
branches: [ master ]
15+
16+
# Allows you to run this workflow manually from the Actions tab
17+
workflow_dispatch:
18+
19+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
20+
jobs:
21+
# This workflow contains a single job called "build"
22+
build:
23+
# The type of runner that the job will run on
24+
runs-on: ubuntu-latest
25+
26+
# Steps represent a sequence of tasks that will be executed as part of the job
27+
steps:
28+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
29+
- uses: actions/checkout@v2
30+
31+
# Runs a single command using the runners shell
32+
- name: Run a one-line script
33+
run: echo Hello, world!
34+
35+
# Runs a set of commands using the runners shell
36+
- name: Run a multi-line script
37+
run: |
38+
echo Add other actions to build,
39+
echo test, and deploy your project.

0 commit comments

Comments
 (0)