|
| 1 | +# This workflow will install Python dependencies, run tests and lint with a variety of Python versions |
| 2 | +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python |
| 3 | + |
| 4 | +name: Python package |
| 5 | + |
| 6 | +on: |
| 7 | + push: |
| 8 | + pull_request: |
| 9 | + |
| 10 | +jobs: |
| 11 | + build: |
| 12 | + |
| 13 | + runs-on: ubuntu-latest |
| 14 | + strategy: |
| 15 | + fail-fast: false |
| 16 | + matrix: |
| 17 | + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] |
| 18 | + |
| 19 | + steps: |
| 20 | + - uses: actions/checkout@v3 |
| 21 | + - name: Set up Python ${{ matrix.python-version }} |
| 22 | + uses: actions/setup-python@v3 |
| 23 | + with: |
| 24 | + python-version: ${{ matrix.python-version }} |
| 25 | + - name: Install dependencies |
| 26 | + run: | |
| 27 | + python -m pip install --upgrade pip |
| 28 | + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi |
| 29 | + python -m pip install flake8 pytest qiskit-aer qiskit_ibm_runtime |
| 30 | + - name: Lint with flake8 |
| 31 | + run: | |
| 32 | + # stop the build if there are Python syntax errors or undefined names |
| 33 | + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics |
| 34 | + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide |
| 35 | + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics |
| 36 | + - name: Test with pytest |
| 37 | + run: | |
| 38 | + python -m pytest -m "not skip" |
| 39 | + - name: Install TorchQuantum |
| 40 | + run: | |
| 41 | + pip install --editable . |
| 42 | + - name: Test Examples |
| 43 | + run: | |
| 44 | + python3 examples/qubit_rotation/qubit_rotation.py --epochs 1 |
| 45 | + python3 examples/vqe/vqe.py --epochs 1 --steps_per_epoch 1 |
| 46 | + python3 examples/train_unitary_prep/train_unitary_prep.py --epochs 1 |
| 47 | + python3 examples/train_state_prep/train_state_prep.py --epochs 1 |
| 48 | + python3 examples/superdense_coding/superdense_coding_torchquantum.py |
| 49 | + python3 examples/regression/run_regression.py --epochs 1 |
| 50 | + python3 examples/param_shift_onchip_training/param_shift.py |
| 51 | + python3 examples/mnist/mnist_2qubit_4class.py --epochs 1 |
| 52 | + python3 examples/hadamard_grad/circ.py |
| 53 | + python3 examples/encoder_examples/encoder_8x2ry.py |
| 54 | + python3 examples/converter_tq_qiskit/convert.py |
| 55 | + python3 examples/amplitude_encoding_mnist/mnist_new.py --epochs 1 |
| 56 | + python3 examples/amplitude_encoding_mnist/mnist_example.py --epochs 1 |
| 57 | + python3 examples/PauliSumOp/pauli_sum_op.py |
| 58 | + python3 examples/regression/new_run_regression.py --epochs 1 |
| 59 | + python3 examples/quanvolution/quanvolution_trainable_quantum_layer.py --epochs 1 |
| 60 | + python3 examples/grover/grover_example_sudoku.py |
| 61 | + python3 examples/param_shift_onchip_training/param_shift.py |
| 62 | + python3 examples/quanvolution/quanvolution.py --epochs 1 |
| 63 | + python3 examples/quantum_lstm/qlstm.py --epochs 1 |
| 64 | + python3 examples/qaoa/max_cut_backprop.py --steps 1 |
| 65 | + python3 examples/optimal_control/optimal_control.py --epochs 1 |
| 66 | + python3 examples/optimal_control/optimal_control_gaussian.py --epochs 1 |
| 67 | + python3 examples/optimal_control/optimal_control_multi_qubit.py --epochs 1 |
| 68 | + python3 examples/save_load_example/save_load.py |
| 69 | + python3 examples/mnist/mnist.py --epochs 1 |
0 commit comments