Skip to content

update to latest version of pyairtable (fix for issue #1) #13

update to latest version of pyairtable (fix for issue #1)

update to latest version of pyairtable (fix for issue #1) #13

Workflow file for this run

name: Testing
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
pip install -e .
pip install hatch
- name: Run tests
run: hatch run cov-fail