Skip to content

draw.io build make target added #1669

draw.io build make target added

draw.io build make target added #1669

Workflow file for this run

name: codestyle
on:
push:
branches:
- dev
- test/**
pull_request:
branches:
- dev
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/dev' }}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: install dependencies
run: |
make venv
- name: run codestyle
run: |
make lint