Bump werkzeug from 2.0.0 to 3.0.1 in /exercises/python-helloworld #52
This file contains 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
## Named of the workflow. | |
name: Python version | |
## Set the trigger policy. | |
## In this case, the workflow is execute on a `push` event, | |
## or when a new commit is pushed to the repository | |
on: [push] | |
## List the steps to be executed by the workflow | |
jobs: | |
## Set the name of the job | |
check-python-version: | |
## Configure the operating system the workflow should run on. | |
## In this case, the job on Ubuntu | |
runs-on: ubuntu-latest | |
## Define a sequence of steps to be executed | |
steps: | |
## Use the public `checkout` actoin in version v2 | |
## to checkout the existing code in the repository | |
- uses: actions/checkout@v2 | |
## Use the public `setup-python` action in version v2 | |
## to install python on the Ubuntu based environment | |
- uses: actions/setup-python@v2 | |
## Executes the `python --version` command | |
- run: python --version |