Skip to content

Bump pypa/gh-action-pypi-publish from 1.8.6 to 1.8.8 #292

Bump pypa/gh-action-pypi-publish from 1.8.6 to 1.8.8

Bump pypa/gh-action-pypi-publish from 1.8.6 to 1.8.8 #292

Workflow file for this run

name: pr
on: pull_request
permissions: read-all
jobs:
lint:
uses: bridgecrewio/gha-reusable-workflows/.github/workflows/pre-commit.yaml@main
with:
python-version: "3.8"
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v4
with:
python-version: 3.7
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run Mypy
run: |
mypy
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v3
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Sets env var for release
if: ${{ matrix.os == 'macos-latest' && matrix.python == '3.7' }}
run: |
# NO_PROXY is needed to call requests API within a forked process
# when using macOS and python version 3.7
echo "NO_PROXY='*'" >> "$GITHUB_ENV"
- name: Run tests
run: pytest --strict-markers -W ignore::UserWarning tests