Skip to content

Add support for text mode file reading #81

Add support for text mode file reading

Add support for text mode file reading #81

Workflow file for this run

name: tox
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
env:
AWS_ACCESS_KEY_ID: minioadmin
AWS_SECRET_ACCESS_KEY: minioadmin
MINIO_STORAGE_ENDPOINT: 127.0.0.1:9000
MINIO_STORAGE_ACCESS_KEY: minioadmin
MINIO_STORAGE_SECRET_KEY: minioadmin
services:
minio:
image: fclairamb/minio-github-actions
ports:
- 9000:9000
steps:
- 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: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Test with tox
run: tox