Skip to content

bump version

bump version #23

Workflow file for this run

name: linting
on:
push:
branches:
- staging
pull_request:
branches:
- main
- staging
jobs:
linting-with-Ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Linting
run: |
ruff check . --preview