Skip to content

Commit

Permalink
Pebblo CI tests (daxa-ai#202)
Browse files Browse the repository at this point in the history
CI tests workflow
  • Loading branch information
siddheshwar-more authored and shreyas-damle committed Apr 24, 2024
1 parent c5ddef4 commit 1fc2eec
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 1 deletion.
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/

0 comments on commit 1fc2eec

Please sign in to comment.