Skip to content

Add HOME expansion

Add HOME expansion #7

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- '**/*.md'
jobs:
core:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: pip-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
restore-keys: pip-${{ runner.os }}-
- run: pip install nox
- run: nox -s tests typecheck black