rq/.github/workflows/dependencies.yml

106 lines
3.2 KiB
YAML

name: Dependencies
on:
schedule:
# View https://docs.github.com/en/actions/reference/events-that-trigger-workflows#schedule
- cron: '0 12 * * *'
workflow_dispatch:
jobs:
build:
if: github.repository == 'rq/rq'
name: Python${{ matrix.python-version }}/Redis${{ matrix.redis-version }}/redis-py${{ matrix.redis-py-version }}
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
redis-version: [3, 4, 5, 6, 7]
redis-py-version: [3.5.0]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ matrix.python-version }}
- name: Start Redis
uses: supercharge/redis-github-action@1.8.0
with:
redis-version: ${{ matrix.redis-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
pip install redis==${{ matrix.redis-py-version }}
- name: Test with pytest
run: |
RUN_SLOW_TESTS_TOO=1 hatch run test:pytest --durations=5
dependency-build:
name: Check development branches of dependencies
runs-on: ubuntu-latest
needs: build
if: success()
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
redis-version: [3, 4, 5, 6, 7]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ matrix.python-version }}
- name: Start Redis
uses: supercharge/redis-github-action@1.8.0
with:
redis-version: ${{ matrix.redis-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
- name: Test with pytest
run: RUN_SLOW_TESTS_TOO=1 hatch run test:pytest --durations=5 > log.txt 2>&1
- uses: actions/upload-artifact@v4
with:
name: dependencies-error
path: log.txt
if: failure()
issue:
name: Create failure issue
runs-on: ubuntu-latest
if: failure()
needs: dependency-build
steps:
- uses: actions/download-artifact@v4
with:
name: dependencies-error
path: .
- name: Create failure issue
run: |
if [[ "$(curl --url https://api.github.com/repos/${{ github.repository }}/issues?creator=github-actions --request GET)" != *"\""* ]]
then curl --request POST \
--url https://api.github.com/repos/${{ github.repository }}/issues \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
--header 'content-type: application/json' \
--data "{
\"title\": \"RQ maybe may not work with dependencies in the future\",
\"body\": \"This issue was automatically created by the GitHub Action workflow **${{ github.workflow }}**. \n\n View log: \n\n \`\`\` \n $(cat log.txt | while read line; do echo -n "$line\n"; done | sed -r 's/"/\\"/g') \n \`\`\`\"
}"
fi