Skip to content

Reorganize Asset Patterns documentation into focused modules with top… #174

Reorganize Asset Patterns documentation into focused modules with top…

Reorganize Asset Patterns documentation into focused modules with top… #174

Workflow file for this run

name: Lint and Test
permissions:
contents: read
on:
push:
branches: [master]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install pre-commit
run: pip install pre-commit
- name: Cache pre-commit environments
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run pre-commit
run: pre-commit run --all-files --show-diff-on-failure
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install tox
run: pip install tox
- name: Run tests
run: make test