Skip to content

Merge pull request #37 from praekeltfoundation/update-deps #132

Merge pull request #37 from praekeltfoundation/update-deps

Merge pull request #37 from praekeltfoundation/update-deps #132

Workflow file for this run

---
name: test
on: [push, pull_request] # yamllint disable-line rule:truthy
jobs:
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: set up py3.12
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '3.12'
- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
- name: Install dependencies
id: install-deps
run: |
uv sync --dev --extra polars
- name: test with pytest
run: |
uv run pytest -v