Skip to content

build: update redis docker image to v7 (#14) #38

build: update redis docker image to v7 (#14)

build: update redis docker image to v7 (#14) #38

Workflow file for this run

name: build
on:
push:
branches:
- main
- release/**
jobs:
dist:
name: Create wheel and source distribution
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: |
pip install wheel
python setup.py sdist bdist_wheel
- uses: actions/upload-artifact@v3.1.1
with:
name: ${{ github.sha }}
path: dist/*