Skip to content

Commit

Permalink
Create Cache
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Ken  <samkenxhub@gmail.com>
  • Loading branch information
samkenxstream committed Jun 6, 2023
1 parent 6175202 commit 1081bfc
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/django.yml/Cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Django CI

on:
push:
branches: [ "Fix-ftp-to-allow-doctests" ]
pull_request:
branches: [ "Fix-ftp-to-allow-doctests" ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python manage.py test
- name: Cache

uses: actions/cache@v1.2.1

with:

# A directory to store and save the cache

path:

# An explicit key for restoring and saving the cache

key:

# An ordered list of keys to use for restoring the cache if no cache hit occurred for key

restore-keys: # optional

0 comments on commit 1081bfc

Please sign in to comment.