Rename ln2_fill.done to ln2_fill.complete #64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Set up uv | |
run: curl -LsSf https://astral.sh/uv/install.sh | sh | |
- name: Restore uv cache | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/.uv-cache | |
key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} | |
restore-keys: | | |
uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} | |
uv-${{ runner.os }} | |
- name: Install Postgresql | |
uses: ikalnytskyi/action-setup-postgres@v6 | |
with: | |
username: postgres | |
id: postgres | |
- name: Install dependencies | |
run: | | |
uv pip install --system -e .[dev] | |
- name: Test with pytest | |
run: | | |
pytest -s | |
env: | |
PGSERVICE: ${{ steps.postgres.outputs.service-name }} | |
- name: Minimize uv cache | |
run: uv cache prune --ci |