We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d007eb2 commit 661d4b1Copy full SHA for 661d4b1
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,18 @@
1
+name: CheckHomework
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Run a one-line script
12
+ run: echo Hello, world!
13
+ - name: Current Branch
14
+ uses: ryolambert/current-branch@v1.0
15
+ - name: Run a multi-line script
16
+ run: |
17
+ echo Add other actions to build,
18
+ echo test, and deploy your project.
0 commit comments