Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.
Merged
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
7 changes: 5 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
if: github.event.pull_request.head.repo.full_name == github.repository
runs-on: self-hosted
steps:
- uses: lkstrp/pypsa-validator@v0.1.3
- uses: lkstrp/pypsa-validator@v0.1.4
with:
step: run-self-hosted-validation
env_file: environment.yaml
Expand All @@ -43,28 +43,31 @@ jobs:
~/${{ github.repository }}/feature/.snakemake/
if-no-files-found: error
retention-days: 90
include-hidden-files: true
- uses: actions/upload-artifact@v4
with:
name: results (main branch)
path: |
~/${{ github.repository }}/main/results
if-no-files-found: error
retention-days: 90
include-hidden-files: true
- uses: actions/upload-artifact@v4
with:
name: results (feature branch)
path: |
~/${{ github.repository }}/feature/results
if-no-files-found: error
retention-days: 90
include-hidden-files: true

comment-on-pr:
name: Comment on pull request
if: github.event.pull_request.head.repo.full_name == github.repository
needs: upload-artifacts
runs-on: ubuntu-latest
steps:
- uses: lkstrp/pypsa-validator@v0.1.3
- uses: lkstrp/pypsa-validator@v0.1.4
with:
step: create-comment
snakemake_config: config/config.yaml
Expand Down