Skip to content

Commit cfc6508

Browse files
committed
Try nightly
1 parent 29b3060 commit cfc6508

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
# On each operating system, check latest version of python and cirq
5151
os: [ ubuntu-latest, macos-latest, windows-latest ]
5252
python-version: [ '3.9' ]
53-
cirq-version: [ '~=0.13.0', '>=0.14.0.dev' ]
53+
cirq-version: [ '~=0.13.0' ]
5454
# Also check least-supported versions (linux only)
5555
include:
5656
- os: ubuntu-latest

.github/workflows/nightly.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Cirq Pre-release
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
7+
jobs:
8+
cirq-next:
9+
name: Cirq Pre-release
10+
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
os: [ ubuntu-latest, macos-latest, windows-latest ]
14+
python-version: [ '3.9' ]
15+
fail-fast: false
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: actions/setup-python@v2
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
- name: Install requirements
22+
run: |
23+
pip install -r dev_tools/conf/pip-list-dev-tools.txt
24+
pip install -r requirements.txt
25+
pip install -U cirq-core cirq-google --pre
26+
- name: Pytest check
27+
run: check/pytest
28+
shell: bash

0 commit comments

Comments
 (0)