Copy changes from prawcore ratelimit updates #317
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
jobs: | |
complete_coveralls: | |
needs: test-multi-python | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true | |
lint-multi-os: | |
name: Lint ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- uses: actions/cache@v1 | |
with: | |
key: v0-${{ runner.os }}-pip-lint-${{ hashFiles('setup.py') }} | |
path: ~/.cache/pip | |
restore-keys: | | |
v0-${{ runner.os }}-pip-lint- | |
v0-${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip==21.* setuptools wheel | |
pip install .[lint] | |
- name: Run pre-commit hooks | |
uses: pre-commit/[email protected] | |
strategy: | |
matrix: | |
os: [macOS-latest, ubuntu-latest, windows-latest] | |
test-multi-os: | |
name: Test ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- uses: actions/cache@v1 | |
with: | |
key: v0-${{ runner.os }}-pip-test-${{ hashFiles('setup.py') }} | |
path: ~/.cache/pip | |
restore-keys: | | |
v0-${{ runner.os }}-pip-test- | |
v0-${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install https://github.com/LilSpazJoekp/vcrpy/archive/asyncpraw.zip | |
pip install .[test] | |
pip install .[ci] | |
- name: Test with pytest | |
run: pytest | |
strategy: | |
matrix: | |
os: [macOS-latest, ubuntu-latest, windows-latest] | |
test-multi-python: | |
name: Test Python ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/cache@v1 | |
with: | |
key: v0-${{ runner.os }}-pip-test-${{ hashFiles('setup.py') }} | |
path: ~/.cache/pip | |
restore-keys: | | |
v0-${{ runner.os }}-pip-test- | |
v0-${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install https://github.com/LilSpazJoekp/vcrpy/archive/asyncpraw.zip | |
pip install .[test] | |
pip install .[ci] | |
- name: Test with pytest | |
run: coverage run --source asyncprawcore --module pytest | |
- env: | |
COVERALLS_PARALLEL: true | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
name: Submit to coveralls | |
run: coveralls --service=github | |
- name: Check coverage | |
run: coverage report -m --fail-under=100 | |
strategy: | |
matrix: | |
python-version: [3.7, 3.8, 3.9, '3.10'] | |
name: CI | |
on: [pull_request, push] |