Primera prueba en ejecución #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: Primera prueba | |
| run-name: Primera prueba en ejecución | |
| on: [workflow_dispatch] | |
| jobs: | |
| run-tests: | |
| name: running test suite | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: run tests | |
| run: python -m unittest discover -s tests -p "test_*.py" | |
| execution: | |
| name: small execution | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: run script | |
| run: | | |
| echo "Directory: ${{ github.workspace }}" | |
| python --version | |
| ls -l | |
| python hello.py |