ci(deps-dev): Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.3 #463
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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 }} |