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 5903f25 commit bda8aef
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/doctest-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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

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

0 comments on commit bda8aef

Please sign in to comment.