Cirq Compatibility #999
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: Cirq Compatibility | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
consistency: | |
name: Nightly Compatibility | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.7' | |
architecture: 'x64' | |
- name: Install Cirq nightly | |
run: pip3 install -U cirq --pre | |
- name: Install qsim requirements | |
run: pip3 install -r requirements.txt | |
- name: Install test requirements | |
run: pip3 install -r dev-requirements.txt | |
- name: Run python tests | |
run: make run-py-tests |