Skip to content

feat: finish init adapter implementation #3

feat: finish init adapter implementation

feat: finish init adapter implementation #3

Workflow file for this run

name: Integration
on:
push:
branches: [ main ]
pull_request:
# will cancel previous workflows triggered by the same event and for the same ref for PRs or same SHA otherwise
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ contains(github.event_name, 'pull_request') && github.event.pull_request.head.ref || github.sha }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
test:
name: ${{ matrix.os }} - ${{ matrix.py }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os:
- ubuntu
py:
- "3.9"
steps:
- name: Check out Repo
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Start FlightSQL and Postgres Server
shell: bash -l {0}
run: |
docker-compose up -d
- name: Set up Python ${{ matrix.py }}
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- name: Load cached Poetry installation
id: cached-poetry-install
uses: actions/cache@v4
with:
path: ~/.local
key: poetry-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install Poetry
if: steps.cached-poetry-install.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.4.2
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install python dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --with dev --sync --no-interaction --all-extras
- name: Run tests
run: |
source .venv/bin/activate
pytest
- name: Store snapshot report on failure
uses: actions/upload-artifact@v4
if: failure()
with:
name: Snapshot Report ${{ matrix.os }} ${{ matrix.py }}
path: ./snapshot_report.html
- name: Stop FlightSQL and Postgres Server
shell: bash -l {0}
run: |
docker-compose down