Bump urllib3 from 1.26.16 to 1.26.17 #137
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: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
SEMGREP_R2C_INTERNAL_EXPLICIT_SEMGREPIGNORE: ./tests/assets/files/.semgrepignore | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python-version: [3.8, 3.9, '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox poetry==1.6.1 | |
- name: Lint | |
run: | | |
tox -e lint | |
- name: Install libsast | |
run: | | |
poetry install --no-interaction --no-ansi | |
- name: Bandit Scan | |
run: | | |
poetry run bandit libsast -r | |
- name: Unit test | |
run: | | |
poetry run pytest -v --cache-clear tests | |
- name: Python Package Test | |
run: | | |
tox -e build | |
- name: Clean Up | |
run: | | |
tox -e clean |