Skip to content

Commit

Permalink
refactor: Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jvfe committed Oct 11, 2023
2 parents 94be680 + 543a7cd commit 2922740
Show file tree
Hide file tree
Showing 124 changed files with 4,273 additions and 1,037 deletions.
6 changes: 0 additions & 6 deletions .github/.dockstore.yml

This file was deleted.

64 changes: 0 additions & 64 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

8 changes: 0 additions & 8 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

26 changes: 0 additions & 26 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

12 changes: 0 additions & 12 deletions .github/markdownlint.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
NXF_VER:
- "latest-everything"
- "latest-stable"
steps:
- name: Check out pipeline code
uses: actions/checkout@v2
Expand All @@ -42,7 +42,7 @@ jobs:
matrix:
profile: ["docker", "singularity"]
NXF_VER:
- "latest-everything"
- "latest-stable"
steps:
- name: Check out pipeline code
uses: actions/checkout@v2
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This workflow will automatically deploy the mkdocs documentation
# while installing the necessary Python dependencies.
# See https://parkererickson.github.io/portfolio/blog/MkDocsCD/

name: docs

on:
push:
branches: [master]
workflow_dispatch:

jobs:
build:
name: Build and Deploy Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout Master
uses: actions/checkout@v2

- name: Set up Python 3
uses: actions/setup-python@v2
with:
python-version: "3.10.8"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs
- name: Deploy
run: |
git pull
mkdocs gh-deploy
132 changes: 0 additions & 132 deletions .github/workflows/linting.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/linting_comment.yml

This file was deleted.

3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: nf-test CI
# This workflow runs the nf-test test suite
on:
push:
pull_request:
release:
types: [published]
Expand All @@ -16,7 +15,7 @@ jobs:
strategy:
matrix:
NXF_VER:
- "latest-everything"
- "latest-stable"
profile: ["docker"] # TODO , "singularity", "conda"]
steps:
- name: Check out pipeline code
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ testing/
testing*
*.pyc
.nf-test
test.nf
Loading

0 comments on commit 2922740

Please sign in to comment.