You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
version: 2 jobs: build: steps: # a collection of executable commands making up the 'build' job - checkout # pulls source code to the working directory - restore_cache: # **restores saved dependency cache if the Branch key template or requirements.txt files have not changed since the previous run** key: deps1-{{ .Branch }}-{{ checksum "requirements.txt" }} - run: # install and activate virtual environment with pip command: | python3 -m venv venv . venv/bin/activate pip install -r requirements.txt - save_cache: # ** special step to save dependency cache ** key: deps1-{{ .Branch }}-{{ checksum "requirements.txt" }} paths: - "@monstro805"