Skip to content

Commit d0f3689

Browse files
Create chemnitz-culture-action.yml
Add a workflow to run tests on push and PR
1 parent 819643a commit d0f3689

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Chemnitz culture action
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: Start workflow message
17+
run: echo "Now running build workflow."
18+
19+
- name: Ending workflow message
20+
run: |
21+
echo "Now ending build workflow."
22+
echo "Have a great day!"

0 commit comments

Comments
 (0)