Skip to content

chore(deps): bump github/super-linter from 5 to 6 #49

chore(deps): bump github/super-linter from 5 to 6

chore(deps): bump github/super-linter from 5 to 6 #49

Workflow file for this run

name: Tests
on: [push, fork]
jobs:
MakeTest:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: 'Deploying miniconda'
uses: conda-incubator/setup-miniconda@v3
with:
miniconda-version: "latest"
environment-file: recipes/workflow.yaml
python-version: '3.9'
mamba-version: "*"
channel-priority: true
use-mamba: true
- name: 'Tests'
run: |
make test
Lint:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter@v6
env:
FILTER_REGEX_EXCLUDE: "./lib/.*"
VALIDATE_GITHUB_ACTIONS: false
VALIDATE_YAML: false
DEFAULT_BRANCH: ${{ github.ref }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}