Bump xedocs #2923
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: Quick requirements test | |
# Trigger this code when a new release is published | |
on: | |
workflow_dispatch: | |
release: | |
types: [ created ] | |
pull_request: | |
push: | |
branches: | |
- master | |
- stable | |
jobs: | |
update: | |
name: "py${{ matrix.python-version }}" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: False | |
matrix: | |
python-version: [3.9] | |
if: ${{ github.triggering_actor != 'dependabot[bot]' }} | |
steps: | |
# Setup and installation | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Setup python | |
uses: actions/setup-python@v2.3.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
cache-dependency-path: | | |
extra_requirements/requirements-tests.txt | |
requirements.txt | |
- name: Install requirements | |
run: | |
pip cache purge && pip install --no-cache-dir -r extra_requirements/requirements-tests.txt -r requirements.txt | |
- name: goodbye | |
run: echo "tests done, bye bye" |