mirror of
https://github.com/mvt-project/mvt.git
synced 2026-04-11 22:38:35 +02:00
* Modify docker image deployment behavior * Use build-push-action to create image provenance & sbom attestations * Upgrade github actions * Fix inconsistent capitialization in dockerfiles --------- Co-authored-by: scribblemaniac <scribblemaniac@users.noreply.github.com>
27 lines
491 B
YAML
27 lines
491 B
YAML
name: Ruff
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
ruff_py3:
|
|
name: Ruff syntax check
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.9
|
|
cache: 'pip'
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install ruff
|
|
- name: ruff
|
|
run: |
|
|
make ruff
|