Bump aiohttp from 3.8.5 to 3.8.6 #96
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
name: "setuptools" | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: [3.8, 3.9] | |
steps: | |
- name: Initialize pythom | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: build and install wheel package | |
run: | | |
pip install wheel | |
python setup.py sdist bdist_wheel | |
find dist -name "*.whl" -type f -exec pip install {} \; | |
shell: bash |