Skip to content

Add repo link to pypi #27

Add repo link to pypi

Add repo link to pypi #27

Workflow file for this run

name: robotframework-cache CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12", "3.14"]
dependency-resolution: ["lowest-direct", "highest"]
fail-fast: false
env:
UV_RESOLUTION: ${{ matrix.dependency-resolution }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install dependencies
run: |
uv sync --dev
uv tree --depth 1 --no-dev
- name: Lint
run: |
uv run invoke lint
- name: Test
run: |
uv run invoke test