Bump aiohttp from 3.8.5 to 3.8.6 #44
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: Main pipeline | |
on: [push, pull_request] | |
env: | |
APPIMAGE_EXTRACT_AND_RUN: 1 | |
TERM: xterm-256color | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
# apparently these are interpreted as floats, so we have to wrap them in quotes | |
PYTHON_VERSION: ["3.7", "3.8", "3.9", "3.10"] | |
name: Test against Python ${{ matrix.PYTHON_VERSION }} | |
runs-on: ubuntu-latest | |
env: | |
PYTHON: python${{ matrix.PYTHON_VERSION }} | |
steps: | |
- name: Install Python ${{ matrix.PYTHON_VERSION }} | |
run: | | |
sudo add-apt-repository ppa:deadsnakes/ppa | |
sudo apt-get update | |
sudo apt-get install -y --no-install-recommends \ | |
python${{ matrix.PYTHON_VERSION }}-minimal \ | |
python${{ matrix.PYTHON_VERSION }}-venv | |
- uses: actions/checkout@v2 | |
- name: Build example projects | |
run: bash -xe ci/build-example-projects.sh | |
appimage: | |
strategy: | |
fail-fast: false | |
matrix: | |
ARCH: [x86_64, i386] | |
name: Build AppImage for ${{ matrix.ARCH }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build AppImage | |
run: | | |
export ARCH="${{ matrix.ARCH }}" | |
bash -xe ci/build-appimage.sh | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: AppImage ${{ matrix.ARCH }} | |
path: appimagecraft*.AppImage* | |
upload: | |
name: Create release and upload artifacts | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
- appimage | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v2 | |
- name: Inspect directory after downloading artifacts | |
run: ls -alFR | |
- name: Create release and upload artifacts | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
wget -q https://github.com/TheAssassin/pyuploadtool/releases/download/continuous/pyuploadtool-x86_64.AppImage | |
chmod +x pyuploadtool-x86_64.AppImage | |
./pyuploadtool-x86_64.AppImage **/appimagecraft*.AppImage* |