Skip to content

Cron-staging

Cron-staging #1408

Workflow file for this run

name: Cron-staging
on:
schedule:
- cron: "0 4 * * *"
workflow_dispatch:
jobs:
qiskit-main-tests:
if: github.repository_owner == 'Qiskit-Community'
name: tests-python${{ matrix.python-version }}-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.9, "3.12"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- name: Print Concurrency Group
env:
CONCURRENCY_GROUP: ${{ github.repository }}-${{ github.ref }}-${{ github.head_ref }}
run: |
echo -e "\033[31;1;4mConcurrency Group\033[0m"
echo -e "$CONCURRENCY_GROUP\n"
shell: bash
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
cache-dependency-glob: |
**/tox.ini
**/pyproject.toml
cache-suffix: testsqiskitmain
- name: Install and Run Tests
run: uvx --with tox-uv tox -e qiskit-main
docs:
if: github.repository_owner == 'Qiskit-Community'
name: docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Python 3.12
uses: actions/setup-python@v6
with:
python-version: 3.12
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
cache-dependency-glob: |
**/tox.ini
**/pyproject.toml
cache-suffix: docsqiskitmain
- name: Install Deps
run: |
sudo apt-get install -y pandoc graphviz
- name: Build Docs
run: uvx --with tox-uv tox -edocs-qiskit-main
- name: Compress Artifacts
run: |
mkdir artifacts
tar -Jcvf html_docs.tar.xz docs/_build/html
mv html_docs.tar.xz artifacts/.
- uses: actions/upload-artifact@v4
with:
name: html_docs
path: artifacts