Bump types-setuptools from 70.3.0.20240710 to 71.1.0.20240724 #824
Workflow file for this run
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
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
check-links: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check all links in *.md files | |
id: lychee | |
uses: lycheeverse/[email protected] | |
with: | |
args: >- | |
-v -n "*.md" "**/*.md" | |
--exclude "https://ingest.us0.signalfx.com.*" | |
--exclude "http://localhost*" | |
- name: Fail if there were link errors | |
run: exit ${{ steps.lychee.outputs.exit_code }} | |
test: | |
env: | |
py38: 3.8 | |
py39: 3.9 | |
py310: "3.10" | |
pypy3: pypy-3.8 | |
RUN_MATRIX_COMBINATION: ${{ matrix.python-version }}-${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails | |
matrix: | |
python-version: [ py38, py39, py310, pypy3 ] | |
os: [ ubuntu-latest, windows-latest ] | |
steps: | |
- name: Checkout Repo @ SHA - ${{ github.sha }} | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ env[matrix.python-version] }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env[matrix.python-version] }} | |
- name: Cache Python | |
uses: actions/cache@v4 | |
with: | |
path: | | |
.tox | |
~/.cache/pip | |
~/.poetry/ | |
key: test-cache-${{ env.RUN_MATRIX_COMBINATION }}-${{ hashFiles('poetry.lock') }} | |
- name: Fix cryptography version workaround | |
if: ${{ matrix.python-version == 'pypy3' && matrix.os == 'ubuntu-latest' }} | |
run: pip install "cryptography>=2.0,<=40.0.2" | |
- name: Install Tools | |
run: make install-tools | |
- name: Test | |
# pypy has some issues on github ci that we need to resolve before enabling it | |
if: ${{ matrix.python-version != 'pypy3' && matrix.os != 'windows' }} | |
run: tox -f ${{ matrix.python-version }}-test | |
integration: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo @ SHA - ${{ github.sha }} | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ env[matrix.python-version] }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Cache tox environment | |
uses: actions/cache@v4 | |
with: | |
path: | | |
.tox | |
~/.cache/pip | |
~/.poetry/ | |
key: integration-cache-${{ hashFiles('poetry.lock') }} | |
- name: Install Tools | |
run: make install-tools | |
- name: Integration | |
run: tox -e integration | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo @ SHA - ${{ github.sha }} | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ env[matrix.python-version] }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Cache tox environment | |
uses: actions/cache@v4 | |
with: | |
path: | | |
.tox | |
~/.cache/pip | |
~/.poetry/ | |
key: lint-cache-${{ hashFiles('poetry.lock') }} | |
- name: Install Tools | |
run: make install-tools | |
- name: Lint | |
run: tox -e lint |