changelog (#887) #798
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: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Python ${{ matrix.python-version }} - AioBotocore ${{ matrix.aiobotocore-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
aiobotocore-version: [">=2.5.4,<2.6.0", ">=2.7.0,<2.8.0", ">=2.8.0,<2.9.0", "<3.0.0"] | |
env: | |
BOTO_CONFIG: /dev/null | |
AWS_ACCESS_KEY_ID: foobar_key | |
AWS_SECRET_ACCESS_KEY: foobar_secret | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup conda | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: ci/env.yaml | |
create-args: >- | |
python=${{ matrix.PY }} | |
- name: Install | |
shell: bash -l {0} | |
run: | | |
pip install git+https://github.com/fsspec/filesystem_spec | |
pip install --upgrade "aiobotocore${{ matrix.aiobotocore-version }}" boto3 # boto3 to ensure compatibility | |
pip install . --no-deps | |
pip show aiobotocore boto3 botocore | |
- name: Run Tests | |
shell: bash -l {0} | |
run: pytest -vv s3fs | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- uses: pre-commit/action@v3.0.0 |