File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ on : [push]
2+
3+ jobs :
4+ test_setup_python :
5+ runs-on : ubuntu-latest
6+ steps :
7+ - uses : actions/checkout@v4
8+ - name : Install python
9+ uses : .
10+ with :
11+ python-version : 3.8
12+ - name : Test installation
13+ run : |
14+ python --version
Original file line number Diff line number Diff line change 1+ # IntelliJ IDE folder
2+ .idea /
Original file line number Diff line number Diff line change 1+ name : ' Setup python amazon linux'
2+ description : ' Adds support to install python in amazon linux'
3+ inputs :
4+ python-version :
5+ description : ' Version of python to be installed'
6+ required : true
7+ runs :
8+ using : " composite"
9+ steps :
10+ - id : setup-python
11+ shell : bash
12+ run : |
13+ ./install-python.sh ${{ inputs.python-version }}
14+ branding :
15+ icon : ' code'
16+ color : ' yellow'
Original file line number Diff line number Diff line change 1+ function setup_python() {
2+ echo " installing python..."
3+ }
4+
5+ setup_python
You can’t perform that action at this time.
0 commit comments