Skip to content

Commit

Permalink
Merge pull request #152 from uclahs-cds/nwiltsie-add-new-actions
Browse files Browse the repository at this point in the history
Add standard pipeline GitHub workflows
  • Loading branch information
nwiltsie authored Mar 6, 2024
2 parents fdd2c85 + 21b1ea8 commit 3f58768
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/deploy-docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Build and Deploy Docs

on:
workflow_dispatch:
push:
branches:
- main
tags:
- 'v[0-9]*'

jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v4

- name: Deploy docs
uses: uclahs-cds/tool-Nextflow-action/build-and-deploy-docs@main
14 changes: 14 additions & 0 deletions .github/workflows/nextflow-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Nextflow Tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
tests:
uses: uclahs-cds/tool-Nextflow-action/.github/workflows/nextflow-tests.yml@main
20 changes: 20 additions & 0 deletions .github/workflows/render-puml.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: PlantUML Generation

on:
push:
paths:
- '**.puml'
workflow_dispatch:

jobs:
plantuml:
runs-on: ubuntu-latest

steps:
- name: Generate PUML diagrams
uses: uclahs-cds/tool-PlantUML-action@v1.0.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
ghcr-username: ${{ github.actor }}
ghcr-password: ${{ secrets.GITHUB_TOKEN }}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
---

## [Unreleased]
### Added
- Add workflow to generate SVG images from PlantUML
- Add workflow to build and push documentation to GitHub Pages
- Add workflow to run Nextflow configuration regression tests

### Changed
- Resource updater to allow update for all processes
### Removed
Expand Down

0 comments on commit 3f58768

Please sign in to comment.