forked from extern/httpie-cli
08751d3672
* Add install/update instructions database * Update the database * Revert README changes They will be overwritten later. * Revert * Tweak * Tweaks * Upgrade database * Complete commands Still not sure about Spack upgrades. * Sort * Doc generation script draft * Remove OS names from tool names * Fix Linuxbrew name * `wheel` already installs `setuptools` * Gen docs * Update * Tweak * Add a GitHub workflow to check for outdated installation instructions * Fix return value * Test * Delete test * Rename the script * Add `make doc-install-inst` * Add missing dev requirement * The first tool is the primary we want to display Then they are simply sorted by `tool.title`. * Sort OSes by name * Refactoring, jinja template, etc. * Add tool title uniqueness `assert`, fix platform list extra `\n` * Rebuild docs * Update generate.py * Update README.md * Update methods.yml * Update distros derived, more assertions * Tweaks * Add workflow to auto-update the docs * Do not hide the command * Tweaks Co-authored-by: Jakub Roztocil <jakub@roztocil.co>
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- .github/workflows/tests.yml
|
|
- httpie/**/*.py
|
|
- setup.*
|
|
- tests/**/*.py
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/tests.yml
|
|
- httpie/**/*.py
|
|
- setup.*
|
|
- tests/**/*.py
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
|
|
pyopenssl: [0, 1]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Windows setup
|
|
if: matrix.os == 'windows-latest'
|
|
run: |
|
|
python -m pip install --upgrade pip wheel
|
|
python -m pip install --upgrade '.[dev]'
|
|
python -m pytest --verbose ./httpie ./tests
|
|
env:
|
|
HTTPIE_TEST_WITH_PYOPENSSL: ${{ matrix.pyopenssl }}
|
|
- name: Linux & Mac setup
|
|
if: matrix.os != 'windows-latest'
|
|
run: |
|
|
make install
|
|
make test
|
|
env:
|
|
HTTPIE_TEST_WITH_PYOPENSSL: ${{ matrix.pyopenssl }}
|