Test branch 2 #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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." |