Skip to content

bump version to 0.8.0 #79

bump version to 0.8.0

bump version to 0.8.0 #79

Workflow file for this run

# This is GitHub Action for tests
name: test
on:
pull_request:
branches: [master]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11.3"]
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
container: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Run pytest
env:
REDIS_HOST: redis
TOXENV: pytest
TOX_TESTENV_PASSENV: REDIS_HOST
run: |
pip install -r requirements-tests.txt
tox