Skip to content

Commit

Permalink
Initial: Move docs and lint to gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
raynelfss committed Nov 21, 2024
1 parent 5f3f594 commit 19bce30
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 45 deletions.
45 changes: 0 additions & 45 deletions .azure/lint_docs-linux.yml

This file was deleted.

58 changes: 58 additions & 0 deletions .github/workflows/lint_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
---
name: Lint and Docs
on:
push:
branches: [ main, 'stable/*' ]
pull_request:
branches: [ main, 'stable/*' ]
merge_group:

concurrency:
group: ${{ github.repository }}-${{ github.ref }}-${{ github.head_ref }}
cancel-in-progress: true

jobs:
docs:
if: github.repository_owner == 'Qiskit'
name: Docs
runs-on: ubuntu-latest
strategy:
fail-fast: False
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install ubuntu docs dependencies
run: tools/install_ubuntu_docs_dependencies.sh
- name: Run docs
run: |
tox -e docs
- name: Store built documentation artifact
uses: actions/upload-artifact@v4
with:
name: qiskit-docs
path: |
./docs/_build/html/*
!**/.doctrees
!**/.buildinfo
if-no-files-found: error
lint:
if: github.repository_owner == 'Qiskit'
name: Lint
runs-on: macOS-14
strategy:
fail-fast: False
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install ubuntu docs dependencies
run: tools/install_ubuntu_docs_dependencies.sh
- name: Run lint
run: |
tox -e lint

0 comments on commit 19bce30

Please sign in to comment.