12 lines
298 B
YAML
12 lines
298 B
YAML
$:
|
|
vscode:
|
|
- runner:
|
|
cpus: 24
|
|
stages:
|
|
- name: ls
|
|
script: ls -al
|
|
- name: install dependents
|
|
script:
|
|
- dnf install python3 python3-pip python3-venv
|
|
- python3 -m venv ./venv
|
|
- pip3 install -r requirements.txt |