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
|
2022-07-07 03:25:25 +00:00
|
|
|
- uses: actions/setup-python@v4
|
2020-11-19 16:31:31 +00:00
|
|
|
with:
|
2023-10-03 09:17:10 +00:00
|
|
|
python-version: 3.12
|
|
|
|
allow-prereleases: true
|
2022-07-07 03:25:25 +00:00
|
|
|
- uses: actions/cache@v3
|
2020-11-19 16:31:31 +00:00
|
|
|
with:
|
|
|
|
path: ~/.cache/pip
|
|
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2020-11-24 11:41:10 +00:00
|
|
|
python -m pip install --upgrade pip setuptools six 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
|
2023-06-25 16:28:01 +00:00
|
|
|
--ignore=quantum/q_fourier_transform.py
|
2022-10-31 13:50:03 +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
|