File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 50
50
# On each operating system, check latest version of python and cirq
51
51
os : [ ubuntu-latest, macos-latest, windows-latest ]
52
52
python-version : [ '3.9' ]
53
- cirq-version : [ '~=0.13.0', '>=0.14.0.dev' ]
53
+ cirq-version : [ '~=0.13.0' ]
54
54
# Also check least-supported versions (linux only)
55
55
include :
56
56
- os : ubuntu-latest
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments