Bump pce version up #514
Workflow file for this run
This file contains 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
# Run some code checks with GitHub Actions. | |
name: Code checks | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
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 . | |
- 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 |