Skip to content

When Content-Length is not available, just download it. #25

When Content-Length is not available, just download it.

When Content-Length is not available, just download it. #25

Workflow file for this run

name: Build
on:
push:
branches:
- master
- main
- tmp-*
tags:
- v*
pull_request:
jobs:
honesty:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
os: [macOS-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
make setup
pip install -U .
- name: Test
run: make test
- name: Lint
run: make lint
if: ${{ matrix.python-version != '3.9' }}
- name: Pessimist
run: make pessimist