Update main.yml #3
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: Binary Encoder/Decoder Build and Run | |
| on: | |
| push: | |
| paths: | |
| - '**/*.py' | |
| - '**/*.yml' | |
| workflow_dispatch: | |
| jobs: | |
| run-binary-py: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Run Binary Encoder | |
| run: | | |
| echo "encode\n" | |
| echo "Hello World!" | python binarypy.py | |