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-12-05 04:34:48 +00:00
|
|
|
- uses: astral-sh/setup-uv@v4
|
|
|
|
with:
|
|
|
|
enable-cache: true
|
|
|
|
cache-dependency-glob: uv.lock
|
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-12-05 04:34:48 +00:00
|
|
|
- run: uv sync --group=test
|
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
|
2024-12-05 04:34:48 +00:00
|
|
|
run: uv run pytest
|
2024-09-30 21:01:15 +00:00
|
|
|
--ignore=computer_vision/cnn_classification.py
|
2024-10-08 17:09:28 +00:00
|
|
|
--ignore=docs/conf.py
|
2024-09-30 21:01:15 +00:00
|
|
|
--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/
|
2024-10-08 17:09:28 +00:00
|
|
|
--ignore=quantum/q_fourier_transform.py
|
2024-01-13 11:24:58 +00:00
|
|
|
--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
|