Skip to content

ci: add github actions #1

ci: add github actions

ci: add github actions #1

Workflow file for this run

name: Test and build application
on: [push]
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.7.0
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: poetry install --no-interaction
- name: Run tests
run: |
source .venv/bin/activate
python -m pytest tap_parquet/tests