2020-11-19 16:31:31 +00:00
|
|
|
name: "build"
|
|
|
|
|
|
|
|
on:
|
2020-11-19 17:04:57 +00:00
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 0 * * *" # Run everyday
|
2020-11-19 16:31:31 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-10-03 09:17:10 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-01-12 16:12:15 +00:00
|
|
|
- uses: actions/setup-python@v5
|
2020-11-19 16:31:31 +00:00
|
|
|
with:
|
2024-09-30 21:01:15 +00:00
|
|
|
python-version: 3.13
|
2023-10-03 09:17:10 +00:00
|
|
|
allow-prereleases: true
|
2024-02-01 07:11:41 +00:00
|
|
|
- uses: actions/cache@v4
|
2020-11-19 16:31:31 +00:00
|
|
|
with:
|
|
|
|
path: ~/.cache/pip
|
|
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2024-10-01 15:32:31 +00:00
|
|
|
python -m pip install --upgrade pip setuptools wheel
|
2022-02-13 10:01:58 +00:00
|
|
|
python -m pip install pytest-cov -r requirements.txt
|
2020-11-19 16:31:31 +00:00
|
|
|
- name: Run tests
|
2023-06-25 16:28:01 +00:00
|
|
|
# TODO: #8818 Re-enable quantum tests
|
2022-10-31 13:50:03 +00:00
|
|
|
run: pytest
|
2024-01-13 11:24:58 +00:00
|
|
|
--ignore=quantum/q_fourier_transform.py
|
2024-09-30 21:01:15 +00:00
|
|
|
--ignore=computer_vision/cnn_classification.py
|
|
|
|
--ignore=dynamic_programming/k_means_clustering_tensorflow.py
|
|
|
|
--ignore=machine_learning/lstm/lstm_prediction.py
|
|
|
|
--ignore=neural_network/input_data.py
|
2024-01-13 11:24:58 +00:00
|
|
|
--ignore=project_euler/
|
|
|
|
--ignore=scripts/validate_solutions.py
|
|
|
|
--cov-report=term-missing:skip-covered
|
|
|
|
--cov=. .
|
2020-11-19 16:31:31 +00:00
|
|
|
- if: ${{ success() }}
|
|
|
|
run: scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md
|