Skip to content

Release/0.1.0

Release/0.1.0 #5

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install yamllint
run: |
python -m pip install --upgrade pip
python -m pip install --user yamllint
- name: Lint metadata file
run: |
yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" metadata.yaml