Skip to content

[Snyk] Security upgrade urllib3 from 1.26.10 to 1.26.19 #486

[Snyk] Security upgrade urllib3 from 1.26.10 to 1.26.19

[Snyk] Security upgrade urllib3 from 1.26.10 to 1.26.19 #486

Workflow file for this run

---
name: CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
workflow_dispatch:
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
env:
USING_COVERAGE: "3.10"
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: |
set -xe
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade coverage[toml] virtualenv tox tox-gh-actions
- name: "Run tox targets for ${{ matrix.python-version }}"
run: "python -m tox"
- name: Upload Coverage Report To Code Climate
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: d5526599ee5960a785d7bcea388c403e8cc9ead6f18223c6b5f7dca22c94cb46
with:
coverageCommand: python -m coverage xml
- name: "Upload coverage to Codecov"
uses: "codecov/codecov-action@v1"
with:
fail_ci_if_error: true