Skip to content

rename fast_cache to ultra_cache, update CI #2

rename fast_cache to ultra_cache, update CI

rename fast_cache to ultra_cache, update CI #2

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
name: Set up Python 3.12
with:
python-version: '3.12'
cache: 'poetry'
- name: Install dependencies
run: |
poetry install
- name: Run ruff
run: |
poetry run ruff check .
poetry run ruff format --check .
- name: Test with pytest
run: |
poetry run pytest