Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

πŸ¦œπŸ” Lint #73

πŸ¦œπŸ” Lint

πŸ¦œπŸ” Lint #73

Workflow file for this run

name: lint
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: "0 5 * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v3
- name: Run ruff
uses: chartboost/ruff-action@v1
- name: Run black
uses: psf/black@stable
with:
version: 23.3.0