Skip to content

Also for tests

Also for tests #386

Workflow file for this run

# Run some code checks with GitHub Actions.
name: Code checks
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
permissions:
contents: read
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Check out sources
uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: "pip" # cache pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install black==24.* isort==5.*
- name: Run "black --check"
run: |
python -m black --check .
- name: Run "isort --check"
run: |
python -m isort --check --profile black .
# # Disable hadolint check until
# # https://github.com/hadolint/hadolint/issues/943 is solved.
# - name: Lint sdx-controller Dockerfile
# uses: hadolint/[email protected]
# with:
# dockerfile: Dockerfile
- name: Lint bapm-server Dockerfile
uses: hadolint/[email protected]
with:
dockerfile: bapm_server/Dockerfile