Skip to content

Commit

Permalink
Add doctest workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxcode123 committed Feb 15, 2024
1 parent ae3520e commit 01a65f0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/doctest-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Doctest package

on:
workflow_call:
workflow_dispatch:
push:
branches: ["main", "feature/*"]
pull_request:
branches: ["main"]

jobs:
doctest-package:
runs-on: ubuntu-latest

env:
INTERPRETER: python
PIP: python -m pip

steps:
- uses: actions/checkout@v3
- name: Set Up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install local package
run: make install-local-package
- name: Doctest package
run: make doctest-package

0 comments on commit 01a65f0

Please sign in to comment.