Skip to content

Commit

Permalink
Check out the code first, fix two lints
Browse files Browse the repository at this point in the history
  • Loading branch information
nwiltsie committed Mar 1, 2024
1 parent baa69c5 commit 992db33
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/Docker-build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v4

- id: getversion
uses: jbutcher5/[email protected]
with:
file: run-nextflow-tests/docker-metadata.yaml
key-path: '["nextflow_version"]'


- id: build-push
uses: uclahs-cds/tool-Docker-action/build-release@nwiltsie-enable-subfolders
with:
Expand Down
2 changes: 1 addition & 1 deletion run-nextflow-tests/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ COPY betterconfig.groovy /usr/local/bltests/
COPY entry.py configtest.py utils.py /usr/local/bltests/
WORKDIR /mnt/pipeline

LABEL org.opencontainers.image.source https://github.com/uclahs-cds/tool-Nextflow-action
LABEL org.opencontainers.image.source=https://github.com/uclahs-cds/tool-Nextflow-action

ENTRYPOINT ["/usr/local/bltests/entry.py"]
2 changes: 1 addition & 1 deletion run-nextflow-tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def diff_json(alpha, beta):

def parse_value(value_str: str):
"Parse a value."
# pylint: disable=too-many-branches
# pylint: disable=too-many-branches,too-many-return-statements
try:
if CLOSURE_RE.match(value_str):
return "closure()"
Expand Down

0 comments on commit 992db33

Please sign in to comment.