forked from Abdulbari/sgeUpdated
17 lines
317 B
YAML
17 lines
317 B
YAML
name: Test Pipeline
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop # only runs when you push to develop
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Print Hello
|
|
run: echo "✅ Pipeline is working on branch: ${{ github.ref }}" |