Skip to content

Bump werkzeug from 0.15.1 to 3.0.6 #86

Bump werkzeug from 0.15.1 to 3.0.6

Bump werkzeug from 0.15.1 to 3.0.6 #86

Workflow file for this run

name: Testing
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.7]
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 dependencies
run: |
python -m pip install --upgrade pip
sed 's/tensorflow-gpu/tensorflow/' requirements.txt > requirements.txt.modified
pip install -r requirements.txt.modified
- name: Test
run: |
bash -c 'for f in *_test.py; do python3 $f || exit 1; done'