Skip to content

Test branch 2

Test branch 2 #1

name: PR Build Python - Composite Action
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Before composite action
run: echo "This is a step before the composite action."
- name: Build and Test Python Project
uses: TomSmithCoding/python-build-test-custom-action@main
with:
python-version: "3.x"
output-path: "src"
- name: After composite action
run: echo "This is a step after the composite action."