Scheduled weekly dependency update for week 22 #122
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python package | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install pipenv | |
run: pipx install pipenv | |
- uses: actions/setup-python@v4 | |
with: | |
python-version-file: '.python-version' | |
cache: 'pipenv' | |
- run: pipenv install | |
- run: pipenv run python manage.py test posts --settings=blog.settings.test |