Adds turbo_refreshes_with template tag for upcoming changes in Turbo 8 #297
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: Runs tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
runtests: | |
runs-on: ubuntu-latest | |
env: | |
CHANNELS_REDIS: redis://localhost:6379/0 | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10' ] | |
services: | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -r requirements-dev.txt | |
- name: Run tests | |
run: | | |
tox |