Skip to content

Commit

Permalink
Merge pull request #52 from uclahs-cds/nwiltsie-add-new-actions
Browse files Browse the repository at this point in the history
Add new standard workflows for pipeline
  • Loading branch information
nwiltsie authored Mar 7, 2024
2 parents 0275a9d + 9ef9220 commit c9b94ff
Show file tree
Hide file tree
Showing 3 changed files with 37 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## [Unreleased]
### Added
- Add workflow to generate SVG images from embedded PlantUML source
- Add workflow to build and deploy documentation to GitHub Pages
- Add workflow to run Nextflow configuration regression tests

### Changed
- Update CI/CD workflow to use current image
Expand Down

0 comments on commit c9b94ff

Please sign in to comment.