Skip to content

Bump python-multipart from 0.0.5 to 0.0.7 in /capstone/files/app #126

Bump python-multipart from 0.0.5 to 0.0.7 in /capstone/files/app

Bump python-multipart from 0.0.5 to 0.0.7 in /capstone/files/app #126

Workflow file for this run

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Monorepo CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install pip
run: |
python -m pip install --upgrade pip
- name: Run tests in default
run: |
cd default
python3 -m venv venv
. venv/bin/activate
pip install -r requirements-dev.txt
pytest
deactivate
- name: Run tests in webhook
run: |
cd webhook
python3 -m venv venv
. venv/bin/activate
pip install -r requirements-dev.txt
pytest
deactivate
- name: Run tests in capstone/files
run: |
cd capstone/files/app
python3 -m venv venv
. venv/bin/activate
pip install -r requirements-dev.txt
pytest
deactivate
- name: Run tests in capstone/feed-fetching
run: |
cd capstone/feed-fetching
python3 -m venv venv
. venv/bin/activate
pip install -r requirements-dev.txt
pytest
deactivate
- name: Run tests in capstone/network-enrichment
run: |
cd capstone/network-enrichment
python3 -m venv venv
. venv/bin/activate
pip install -r requirements-dev.txt
pytest
deactivate