This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
pip dev(deps-dev): bump wrapt from 1.12.1 to 1.16.0 in /api #375
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: PullRequestMaster | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dev deps | |
run: pip install -r api/requirements-dev.txt | |
- name: Run Pytest | |
run: python -m pytest api/tests/ |