Create SECURITY.md #23
This file contains hidden or 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: build | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: ${{ matrix.name }} | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: 'check' | |
| python: '3.9' | |
| toxpython: 'python3.9' | |
| tox_env: 'check' | |
| os: 'ubuntu-latest' | |
| - name: 'docs' | |
| python: '3.9' | |
| toxpython: 'python3.9' | |
| tox_env: 'docs' | |
| os: 'ubuntu-latest' | |
| - name: 'py37-cover (ubuntu)' | |
| python: '3.7' | |
| toxpython: 'python3.7' | |
| python_arch: 'x64' | |
| tox_env: 'py37-cover,codecov' | |
| os: 'ubuntu-latest' | |
| - name: 'py37-nocov (ubuntu)' | |
| python: '3.7' | |
| toxpython: 'python3.7' | |
| python_arch: 'x64' | |
| tox_env: 'py37-nocov' | |
| os: 'ubuntu-latest' | |
| - name: 'py38-cover (ubuntu)' | |
| python: '3.8' | |
| toxpython: 'python3.8' | |
| python_arch: 'x64' | |
| tox_env: 'py38-cover,codecov' | |
| os: 'ubuntu-latest' | |
| - name: 'py38-nocov (ubuntu)' | |
| python: '3.8' | |
| toxpython: 'python3.8' | |
| python_arch: 'x64' | |
| tox_env: 'py38-nocov' | |
| os: 'ubuntu-latest' | |
| - name: 'py39-cover (ubuntu)' | |
| python: '3.9' | |
| toxpython: 'python3.9' | |
| python_arch: 'x64' | |
| tox_env: 'py39-cover,codecov' | |
| os: 'ubuntu-latest' | |
| - name: 'py39-nocov (ubuntu)' | |
| python: '3.9' | |
| toxpython: 'python3.9' | |
| python_arch: 'x64' | |
| tox_env: 'py39-nocov' | |
| os: 'ubuntu-latest' | |
| - name: 'py310-cover (ubuntu)' | |
| python: '3.10' | |
| toxpython: 'python3.10' | |
| python_arch: 'x64' | |
| tox_env: 'py310-cover,codecov' | |
| os: 'ubuntu-latest' | |
| - name: 'py310-nocov (ubuntu)' | |
| python: '3.10' | |
| toxpython: 'python3.10' | |
| python_arch: 'x64' | |
| tox_env: 'py310-nocov' | |
| os: 'ubuntu-latest' | |
| - name: 'pypy37-cover (ubuntu)' | |
| python: 'pypy-3.7' | |
| toxpython: 'pypy3.7' | |
| python_arch: 'x64' | |
| tox_env: 'pypy37-cover,codecov' | |
| os: 'ubuntu-latest' | |
| - name: 'pypy37-nocov (ubuntu)' | |
| python: 'pypy-3.7' | |
| toxpython: 'pypy3.7' | |
| python_arch: 'x64' | |
| tox_env: 'pypy37-nocov' | |
| os: 'ubuntu-latest' | |
| - name: 'pypy38-cover (ubuntu)' | |
| python: 'pypy-3.8' | |
| toxpython: 'pypy3.8' | |
| python_arch: 'x64' | |
| tox_env: 'pypy38-cover,codecov' | |
| os: 'ubuntu-latest' | |
| - name: 'pypy38-nocov (ubuntu)' | |
| python: 'pypy-3.8' | |
| toxpython: 'pypy3.8' | |
| python_arch: 'x64' | |
| tox_env: 'pypy38-nocov' | |
| os: 'ubuntu-latest' | |
| - name: 'pypy39-cover (ubuntu)' | |
| python: 'pypy-3.9' | |
| toxpython: 'pypy3.9' | |
| python_arch: 'x64' | |
| tox_env: 'pypy39-cover,codecov' | |
| os: 'ubuntu-latest' | |
| - name: 'pypy39-nocov (ubuntu)' | |
| python: 'pypy-3.9' | |
| toxpython: 'pypy3.9' | |
| python_arch: 'x64' | |
| tox_env: 'pypy39-nocov' | |
| os: 'ubuntu-latest' | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| architecture: ${{ matrix.python_arch }} | |
| - name: install redis-server | |
| run: sudo apt-get install -y redis-server | |
| - name: install dependencies | |
| run: | | |
| python -mpip install --progress-bar=off -r ci/requirements.txt | |
| virtualenv --version | |
| pip --version | |
| tox --version | |
| pip list --format=freeze | |
| - name: test | |
| env: | |
| TOXPYTHON: '${{ matrix.toxpython }}' | |
| run: > | |
| tox -e ${{ matrix.tox_env }} -v |