From 628df3e2548b577b2d1c199ee890e7048f38d32e Mon Sep 17 00:00:00 2001 From: Adam Talbot <12817534+adamrtalbot@users.noreply.github.com> Date: Fri, 28 Jul 2023 12:46:00 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Harshil Patel --- .github/workflows/nf-core-linting.yml | 4 ++-- .github/workflows/nf-test.yml | 4 ++-- .github/workflows/pytest-workflow.yml | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/nf-core-linting.yml b/.github/workflows/nf-core-linting.yml index c25508de591..2fd48b46487 100644 --- a/.github/workflows/nf-core-linting.yml +++ b/.github/workflows/nf-core-linting.yml @@ -1,5 +1,5 @@ name: nf-core linting -run-name: nf-core linting +run-name: nf-core lint # This workflow is triggered on pushes and PRs to the repository. # It runs the `nf-core lint` tests to ensure that the module code meets the nf-core guidelines on: @@ -15,7 +15,7 @@ concurrency: jobs: changes: - name: check-for-changes + name: check-changes runs-on: ubuntu-latest outputs: # Expose matched filters as job 'modules' output variable diff --git a/.github/workflows/nf-test.yml b/.github/workflows/nf-test.yml index 40693d85bb2..57df4fef4c2 100644 --- a/.github/workflows/nf-test.yml +++ b/.github/workflows/nf-test.yml @@ -16,7 +16,7 @@ concurrency: jobs: changes: - name: check-for-changes + name: check-changes runs-on: ubuntu-latest outputs: # Expose matched filters as job 'modules' output variable @@ -29,7 +29,7 @@ jobs: with: filters: "tests/config/nftest_modules.yml" - nf_test: + nf-test: runs-on: ubuntu-20.04 name: nf-test needs: changes diff --git a/.github/workflows/pytest-workflow.yml b/.github/workflows/pytest-workflow.yml index 2854afb1658..1369107e7f0 100644 --- a/.github/workflows/pytest-workflow.yml +++ b/.github/workflows/pytest-workflow.yml @@ -1,5 +1,5 @@ -name: pytest-workflow -run-name: pytest-workflow +name: pytest +run-name: pytest on: push: branches: [master] @@ -16,7 +16,7 @@ concurrency: jobs: changes: - name: check-for-changes + name: check-changes runs-on: ubuntu-latest outputs: # Expose matched filters as job 'modules' output variable @@ -29,9 +29,9 @@ jobs: with: filters: "tests/config/pytest_modules.yml" - pytest_workflow: + pytest: runs-on: ubuntu-20.04 - name: pytest-workflow + name: pytest needs: changes if: needs.changes.outputs.modules != '[]' strategy: