Skip to content

Asset packs index

Asset packs index #47

Workflow file for this run

name: 'Lint Python code with Black'
on:
push:
branches:
- dev
tags:
- '*'
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: 'Checkout code'
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: 'Setup Python'
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: 'Lint Python code'
run: |
make lint