Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pebblo CI tests #202

Merged
merged 3 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy_gh_pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- main
paths:
- "docs/gh_pages/**"
- "docs/**/*"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/gh_docs_ci_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CIDocsTest

on:
pull_request:
paths:
- "docs/**/*"
jobs:
PebbloDocsCITest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

# Node is required for npm
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "18"

# Install and build Docusaurus website
- name: Build Docusaurus website
run: |
cd docs/gh_pages
npm install
npm run build
25 changes: 25 additions & 0 deletions .github/workflows/pebblo_ci_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CIPebbloTest

on:
pull_request:
paths:
- "pebblo/**/*.py"
jobs:
PebbloCITest:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}

- name: Build Pebblo
run: |
pip install build
python -m build --wheel
ls -la dist/