Skip to content

fix/refactor: build and push now should run, nicify multiline comment… #7

fix/refactor: build and push now should run, nicify multiline comment…

fix/refactor: build and push now should run, nicify multiline comment… #7

Workflow file for this run

name: Code Checking
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: eWaterCycle/setup-apptainer@v2
with:
apptainer-version: 1.3.0
- name: Pulling Singularity container
run: |
singularity registry login --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} oras://ghcr.io
singularity pull oras://ghcr.io/berenslab/retinal-rl:singularity-image-latest
- name: Run Pylint
run: singularity exec retinal-rl_singularity-image-latest.sif pylint --exit-zero . #$(git diff --name-only origin/master origin/feat-ci-pipeline -- '*.py')