Skip to content

Commit

Permalink
ci: adding reusable workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
pthierry-ledger committed Jul 10, 2024
1 parent b97785c commit 37ed5ca
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
push:
pull_request:
branches:
- main

jobs:
ut:
strategy:
matrix:
version: ['3.10', '3.11', '3.12']
uses: outpost-os/pipeline-python/.github/workflows/unittest.yml@v1
with:
python-version: ${{ matrix.version }}
doc:
uses: outpost-os/pipeline-python/.github/workflows/doc.yml@v1
with:
python-version: '3.12'
lint:
needs: [ ut, doc ]
uses: outpost-os/pipeline-python/.github/workflows/lint.yml@v1
with:
python-version: '3.12'

0 comments on commit 37ed5ca

Please sign in to comment.