Skip to content

build(deps): bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #1

build(deps): bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows

build(deps): bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #1

Workflow file for this run

name: Linters
on: pull_request
jobs:
non-python-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
submodules: true
- name: Run shell linter
run: ./shell_lint.sh
- name: Run Dockerfile linters
run: ./dockerfile_lint.sh
python-lint:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
runs-on: ubuntu-latest
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Checkout Code
uses: actions/checkout@v3
with:
submodules: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r dev-requirements.txt
pip install -r requirements.txt
- name: Run linters
run: ./lint.sh --ci