mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 00:03:28 +01:00
* record fix: don't convert 0-N range requests to unbounded for recording, only record 0- (unbounded range requests) * tests: attempt to fix tests, disable youtube-dl related tests * bump to 2.7.4
33 lines
696 B
YAML
33 lines
696 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
unit-tests:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
max-parallel: 3
|
|
matrix:
|
|
python-version: ['3.7', '3.8', '3.9', '3.10']
|
|
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install tox tox-gh-actions
|
|
|
|
- name: Test with tox
|
|
run: tox
|
|
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v3
|
|
|