Skip to content

build: Publish to homebrew-tap #216

build: Publish to homebrew-tap

build: Publish to homebrew-tap #216

Workflow file for this run

name: Linters
on:
pull_request:
jobs:
commitizen:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
with:
fetch-depth: 0
sparse-checkout: |
pyproject.toml
sparse-checkout-cone-mode: false
- name: Install commitizen
run: pipx install commitizen
- run: cz check --rev-range origin/main..HEAD
shell: bash
pre-commit-extras:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Install commitizen
run: pipx install poetry
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: 'poetry'
- run: poetry install --with=dev
- uses: pre-commit/[email protected]
with:
extra_args: >
rich-codex
--all-files
- uses: actions/upload-artifact@v4
with:
name: assets
path: |
.assets/*
retention-days: 3
if: always()