Skip to content

Pip Install

Pip Install #753

Workflow file for this run

name: Pip Install
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
branches:
- master
pull_request:
jobs:
pip:
name: Pip Install
runs-on: [self-hosted, docker, builder]
container:
image: python:3.9.5
options: --user 0:0
volumes:
- /home/buildbot/.ssh:/root/.ssh
steps:
- name: Install SSH client
run: apt update && apt -y install openssh-client
- name: Checkout source code
uses: actions/checkout@v2
- name: Install package
run: pip install .