Files
sgeUpdated/.gitea/workflows/test.yaml
Workflow config file is invalid. Please check your config file: yaml: line 17: mapping values are not allowed in this context

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 }}"