Skip to content

ci(deps-dev): Bump actions/add-to-project from 0.5.0 to 0.6.1 #362

ci(deps-dev): Bump actions/add-to-project from 0.5.0 to 0.6.1

ci(deps-dev): Bump actions/add-to-project from 0.5.0 to 0.6.1 #362

Workflow file for this run

### A CI workflow template that runs linting and python testing
name: Test tap-messagebird
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt
strategy:
matrix:
python-version: [3.9] #Don't want to hit the API for each version of Python
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
run: |
python -m pip install --upgrade pip
pipx install poetry
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
run: |
poetry run pytest
env:
TAP_MESSAGEBIRD_API_KEY: ${{ secrets.TAP_MESSAGEBIRD_API_KEY }}