Skip to content

version bump

version bump #156

Workflow file for this run

name: Build
on:
push:
pull_request:
types: [ opened, edited ]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
defaults:
run:
shell: bash
name: "${{ matrix.os }} CPython ${{ matrix.python-version }}"
steps:
- name: "Checkout Repository"
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: "Set up Python @ ${{ matrix.python-version }}"
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
- name: "Setup Poetry @ ${{ matrix.python-version }}"
uses: snok/install-poetry@v1
with:
version: latest
virtualenvs-create: true
virtualenvs-in-project: true
- name: "Install deps @ ${{ matrix.python-version }}"
env:
PY_VER: "${{ matrix.python-version }}"
run: |
poetry install
- name: Check it imports
run: |
poetry run python -c 'import aiob2'
- name: Test Suite
env:
BUCKET_ID: ${{ secrets.BUCKET_ID }}
BUCKET_NAME: ${{ secrets.BUCKET_NAME }}
KEY_ID: ${{ secrets.KEY_ID }}
KEY: ${{ secrets.KEY }}
run: |
poetry run pytest