Skip to content

update github actions, disable test action, bump version number #162

update github actions, disable test action, bump version number

update github actions, disable test action, bump version number #162

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
prospector:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: jpetrucciani/prospector-check@master
mypy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: jpetrucciani/mypy-check@master
with:
mypy_flags: '--config-file pyproject.toml'
black:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: jpetrucciani/black-check@master
with:
path: 'hubspot3/'
### TESTS ARE DISABLED SINCE I NO LONGER HAVE A VALID API KEY
# tests:
# runs-on: ubuntu-22.04
# needs: [mypy, prospector, black]
# strategy:
# matrix:
# # '3.7', '3.8', '3.9', - need to figure out how to get around rate limiting
# python-version: ['3.11']
# name: python ${{ matrix.python-version }} tests
# steps:
# - uses: actions/checkout@v4
# - name: setup python
# uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}
# architecture: x64
# - name: install requirements
# run: |
# pip install -r requirements.txt
# pip install -r requirements-dev.txt
# - name: run Tox
# run: tox -e py