Skip to content

chore(main): release 0.9.24 (#128) #490

chore(main): release 0.9.24 (#128)

chore(main): release 0.9.24 (#128) #490

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
id: setup-python
uses: actions/setup-python@v5
- name: Cache virtualenv
id: cache-venv
uses: actions/cache@v4
with:
path: .venv
key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-venv-${{ hashFiles('pyproject.toml') }}
- name: Cache pre-commit
id: cache-pre-commit
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: make install
if: steps.cache-venv.outputs.cache-hit != 'true'
run: make install
- name: make hooks
run: make hooks