Skip to content

Commit 74060f6

Browse files
authored
My first github action
I don't know how this works. But I am using it anyways
1 parent 7c4554c commit 74060f6

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/main.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
3+
on: repository_dispatch
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v1
11+
- name: Run a one-line script
12+
run: echo Hello, world!
13+
- name: Run a multi-line script
14+
run: |
15+
echo Add other actions to build,
16+
echo test, and deploy your project.

0 commit comments

Comments
 (0)