We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfef623 commit f657333Copy full SHA for f657333
.github/actions/python_install/action.yml
@@ -5,19 +5,19 @@ runs:
5
steps:
6
- name: Install python
7
run:
8
- sudo apt-get -y install python3-dev
+ sudo apt -y install python3-dev
9
shell: bash
10
- name: python as python3
11
12
- sudo apt-get -y install python-is-python3
+ sudo apt -y install python-is-python3
13
14
- name: Install Pip
15
16
- sudo apt-get -y install python3-pip
+ sudo apt -y install python3-pip
17
18
- name: Install Venv
19
20
- sudo apt install python3-venv
+ sudo apt -y install python3-venv
21
22
- name: Setup Venv
23
run: |
0 commit comments