Skip to content

build(deps-dev): bump the all group with 3 updates #59

build(deps-dev): bump the all group with 3 updates

build(deps-dev): bump the all group with 3 updates #59

Workflow file for this run

name: Test
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.3
virtualenvs-create: false
- name: Install dependencies
run: |
poetry install
- name: Run pre-commit
run: |
poetry run pre-commit run -a
test:
environment: test
env:
AIRTABLE_INTEGRATION_TEST_TOKEN: "${{secrets.AIRTABLE_INTEGRATION_TEST_TOKEN}}"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.3
virtualenvs-create: false
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
run: |
poetry run pytest