Skip to content

fix aiobotocore

fix aiobotocore #133

Workflow file for this run

name: Continuous Integration
# alwas run CI on new commits to any branch
on: push
jobs:
test:
name: ${{ matrix.task }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- task: linting
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.11
- name: linting
if: matrix.task == 'linting'
shell: bash
run: |
pip install --upgrade black flake8 isort nbqa
make lint
all-tests-successful:
if: always()
runs-on: ubuntu-latest
needs:
- test
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/[email protected]
with:
jobs: ${{ toJSON(needs) }}