Bump urllib3 from 1.26.12 to 1.26.17 #169
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
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
Run: | |
name: ${{ matrix.platform }} Python ${{ matrix.python-version }} Run | |
runs-on: ${{ matrix.platform }} | |
strategy: | |
matrix: | |
platform: [ ubuntu-latest, macos-latest, windows-latest ] | |
python-version: [ 3.8, 3.9, "3.10" ] | |
include: | |
- platform: ubuntu-20.04 | |
python-version: 3.6 | |
- platform: ubuntu-latest | |
python-version: 3.7 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Init Environment | |
run: make init | |
- name: Lint | |
run: make flake8 | |
- name: Test | |
run: make test | |
# - name: Coverage | |
# if: startsWith(matrix.platform, 'ubuntu') && matrix.python-version == '3.8' | |
# run: make coverage | |
# - name: Coverage Publish | |
# if: startsWith(matrix.platform, 'ubuntu') && matrix.python-version == '3.8' | |
# uses: codecov/codecov-action@v1 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Package Publish | |
if: startsWith(matrix.platform, 'ubuntu') && matrix.python-version == '3.8' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.TWINE_TOKEN }} | |
run: | |
make publish |