Skip to content
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
32 changes: 32 additions & 0 deletions .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build package

on:
pull_request:
branches:
- main
paths-ignore:
# Config files
- ".github/**"
- ".vscode/**"
- ".gitignore"
# Documentation
- "docs/**"
- "*.md"
- "*.qmd"
- "justfile"
# Website files
- _quarto.yml
- index.qmd
- _publish.yml
- _extensions/**
push:
branches:
- main

jobs:
lint:
uses: seedcase-project/.github/.github/workflows/reusable-lint-python.yml@main

test:
uses: seedcase-project/.github/.github/workflows/reusable-test-python.yml@main
needs: lint
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy documentation as website
name: Build website of documentation

on:
push:
Expand All @@ -12,7 +12,7 @@ on:
- _extensions/**

jobs:
build-deploy-docs:
uses: seedcase-project/.github/.github/workflows/deploy-docs-with-python.yml@main
build-website:
uses: seedcase-project/.github/.github/workflows/reusable-build-docs-with-python.yml@main
secrets:
netlify-token: ${{ secrets.NETLIFY_AUTH_TOKEN }}
44 changes: 0 additions & 44 deletions .github/workflows/deploy-demo.yml

This file was deleted.

65 changes: 0 additions & 65 deletions .github/workflows/deploy-pr-preview.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/puml-to-svg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ on:

jobs:
generate-plantuml:
uses: seedcase-project/.github/.github/workflows/puml-to-svg.yml@main
uses: seedcase-project/.github/.github/workflows/reusable-puml-to-svg.yml@main
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}