Skip to content

pipeline setup test

pipeline setup test #7

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- '*'
jobs:
initial-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run script file
run: |
env
echo "${{toJSON(github.event)}}"
shell: bash
pre-feature-pipeline:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install requests
- name: Run Python script
run: python3 pipeline/pipeline.py --step pre_feature_branch
env:
GH_COMMIT_MESSAGE: ${{ github.event.head_commit.message }}