github action ejemplo #8
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: github action ejemplo | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
escribe-algo: | |
name: Escribe algo | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.2.2 | |
- name: Setup Python | |
uses: actions/setup-python@v5.6.0 | |
with: | |
python-version: '3.13' | |
- name: Install dependencies | |
run: python3 -m pip install pyfiglet | |
- run: python3 scripts/hello.py |