Skip to content

Release 0.6.7.1

Release 0.6.7.1 #9

Workflow file for this run

---
name: Linting
on:
push:
branches:
- main
tags-ignore:
- '**'
pull_request:
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: pip install -e .[dev]
- name: Install ShellSpec
uses: ./.github/actions/shellspec
- name: Run pre-commit
uses: pre-commit/[email protected]