kopardev is running LINT on activeDev branch! #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
run-name: ${{github.actor}} is running LINT on activeDev branch! | |
on: | |
push: | |
branches: | |
- activeDev | |
pull_request: | |
branches-ignore: [] | |
jobs: | |
Dryrun_Lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Linting | |
uses: actions/checkout@v3 | |
with: | |
ref: "activeDev" | |
- run: echo "repo cloned --> ${{github.repository}}" | |
- run: echo "github workspace --> ${{github.workspace}}" | |
- name: Listing the repo | |
run: | | |
ls -larth ${{github.workspace}} | |
- name: Running Lint | |
uses: snakemake/snakemake-github-action@v1 | |
with: | |
directory: '.' | |
snakefile: 'workflow/Snakefile' | |
args: '--lint --configfile config/lint.config.yaml' | |
- run: echo "STATUS --> ${{job.status}}" |