Skip to content

ci: add implementation of caching for python dependencies #3240

ci: add implementation of caching for python dependencies

ci: add implementation of caching for python dependencies #3240

Workflow file for this run

on:
pull_request:
push:
branches: [main]
schedule:
- cron: '30 8 * * *'
permissions:
contents: write
jobs:
pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
cache: 'pip'
cache-dependency-path: '**/requirements-dev.txt'
- run: pip install virtualenv
- run: make
- run: make push
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}