Skip to content

Rename channel to "QML Format" #78

Rename channel to "QML Format"

Rename channel to "QML Format" #78

Workflow file for this run

name: Lint
on:
push:
pull_request:
jobs:
lint:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-20.04
container:
image: ghcr.io/delgan/qml-format:main
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set ownership
run: |
# Workaround for https://github.com/actions/runner/issues/2033
chown -R $(id -u):$(id -g) $PWD
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Run pre-commit linters
uses: pre-commit/[email protected]