Skip to content

Bump tensorflow from 2.11.0 to 2.11.1 #659

Bump tensorflow from 2.11.0 to 2.11.1

Bump tensorflow from 2.11.0 to 2.11.1 #659

Workflow file for this run

name: Build and Test
on:
push:
branches: [ master, dev, 'release/*' ]
pull_request:
branches: [ master, dev, 'release/*' ]
workflow_dispatch:
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
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 c3 package
run: |
python -m pip install --upgrade pip
pip install pytest qiskit
pip install .
- name: Test with pytest
run: |
pytest -v -x -m "not slow" test/
pytest -v -x -m "slow" test/