Skip to content

hackathon: group coding session #114

hackathon: group coding session

hackathon: group coding session #114

Workflow file for this run

name: Lint
# Make sure only one action triggers the job, otherwise pushing to a
# pull-request will run it twice.
on:
pull_request:
branches:
- "*"
merge_group:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Install yamllint
run: sudo apt-get install -y yamllint
- name: "Clone Repository"
uses: actions/checkout@v4
- name: Install
run: pip install ruff
- name: Run linters
run: make lint