Skip to content

chore(deps): Bump urllib3 from 1.26.17 to 1.26.18 #161

chore(deps): Bump urllib3 from 1.26.17 to 1.26.18

chore(deps): Bump urllib3 from 1.26.17 to 1.26.18 #161

Workflow file for this run

name: Test tap-canny
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
env:
SETUPTOOLS_USE_DISTUTILS: stdlib
PIP_CONSTRAINT: .github/workflows/constraints.txt
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout code
uses: actions/checkout@v4.1.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
pip install pip
pip --version
- name: Install Poetry
run: |
pipx install poetry
poetry --version
- name: Install tox
run: |
pipx install tox
tox --version
- name: Run lint command from tox.ini
env:
TAP_CANNY_API_KEY: ${{ secrets.TAP_CANNY_API_KEY }}
TAP_CANNY_START_DATE: ${{ secrets.TAP_CANNY_START_DATE }}
run: |
tox -e pytest
pre-commit:
runs-on: ubuntu-latest
env:
FORCE_COLOR: "1"
steps:
- name: Checkout code
uses: actions/checkout@v4.1.0
- name: Set up Python
uses: actions/setup-python@v4.7.1
with:
python-version: "3.11"
- uses: pre-commit/action@v3.0.0
- uses: pre-commit-ci/lite-action@v1.0.1
if: always()