This repository has been archived by the owner on Jul 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 145
90 lines (89 loc) · 2.79 KB
/
pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# This code is part of Qiskit.
#
# (C) Copyright IBM 2020.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
name: PR-Test
on: pull_request
jobs:
tests:
if: github.repository_owner == 'Qiskit'
name: pr-tests-python${{ matrix.python-version }}-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
os: ["macOS-latest", "ubuntu-latest", "windows-latest"]
env:
QE_TOKEN: ${{ secrets.QE_TOKEN }}
QE_URL: https://auth.quantum-computing.ibm.com/api
QE_HGP: ${{ secrets.QE_HGP }}
QE_PRIVATE_HGP: ${{ secrets.QE_PRIVATE_HGP }}
LOG_LEVEL: DEBUG
STREAM_LOG: True
QISKIT_TESTS: skip_online
QISKIT_IN_PARALLEL: True
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 Deps
run: |
python -m pip install --upgrade pip
pip install -c constraints.txt -e .
pip install -U -c constraints.txt -r requirements-dev.txt
- name: Run Tests
run: make test
lint:
if: github.repository_owner == 'Qiskit'
name: lint & mypy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install Deps
run: |
python -m pip install --upgrade pip
pip install -c constraints.txt -e .
pip install -U -c constraints.txt -r requirements-dev.txt
- name: Run lint
run: make style && make lint
- name: Run mypy
run: make mypy
if: ${{ !cancelled() }}
doc:
if: github.repository_owner == 'Qiskit'
name: doc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install Deps
run: |
python -m pip install --upgrade pip
pip install -U 'tox<4'
sudo apt install -y graphviz pandoc
pip install -c constraints.txt -e .
- name: Build docs
run: tox -edocs
- name: Upload docs
uses: actions/upload-artifact@v2
with:
name: html_docs
path: docs/_build/html