Skip to content

Commit

Permalink
Add personal CI... hummm, will it work?
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosbento committed Oct 6, 2024
1 parent 51adeb3 commit 035bfe5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/hummm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: hummm

on:
# Trigger the workflow on push to master or develop, except tag creation
push:
branches:
- 'feature/**'
tags-ignore:
- '**'

jobs:
hummm:
name: hummmm
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Run a one-line script
run: echo Hello, world!

- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.

0 comments on commit 035bfe5

Please sign in to comment.