Skip to content

test initiated by jnothman #2

test initiated by jnothman

test initiated by jnothman #2

Workflow file for this run

name: Build
run-name: test initiated by ${{ github.actor }}
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setup.py
- name: Lint with Ruff
run: |
pip install ruff
ruff --output-format=github .
continue-on-error: true