Return undef when a tissue sample has no plate or trial #2033
Workflow file for this run
This file contains hidden or 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
| --- | |
| name: Lint | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| branches: | |
| - 'master' | |
| pull_request: | |
| branches: | |
| - 'master' | |
| permissions: {} | |
| env: | |
| FILTER_REGEX_EXCLUDE: "docs/.*|t/unit_mech/AJAX/_BrAPIv2_germplasm.t" | |
| jobs: | |
| build: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: read | |
| # To report GitHub Actions status checks | |
| statuses: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| with: | |
| # super-linter needs the full git history to get the | |
| # list of files that changed across commits | |
| fetch-depth: 0 | |
| - name: Super-linter | |
| uses: super-linter/super-linter@v8.3.1 # x-release-please-version | |
| env: | |
| # To report GitHub Actions status checks | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| HTMLHINT_CONFIG_FILE: .github/linters/.htmlhintrc | |
| VALIDATE_ALL_CODEBASE: false | |
| VALIDATE_SHELL_SHFMT: false | |
| VALIDATE_ANSIBLE: false | |
| VALIDATE_CHECKOV: false | |
| VALIDATE_JSCPD: false | |
| VALIDATE_LATEX: false | |
| VALIDATE_CSS: false | |
| FIX_YAML_PRETTIER: true | |
| VALIDATE_JAVASCRIPT_PRETTIER: false | |
| VALIDATE_JAVASCRIPT_ES: false | |
| VALIDATE_SQLFLUFF: false | |
| VALIDATE_BIOME_FORMAT: false | |
| VALIDATE_GITHUB_ACTIONS_ZIZMOR: false |