Skip to content

update test locale

update test locale #2

Workflow file for this run

name: pytest CI
on:
push:
branches:
- "*" # This will trigger on pushes to *any* branch
pull_request_target:
jobs:
test:
runs-on: ubuntu-latest
# Condition to prevent duplicate runs
if: github.event_name == 'push' || (github.event_name == 'pull_request_target' && github.event.pull_request.head.sha == github.sha)
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
# Important: Fetch the correct commit for pull_request_target
ref: ${{ github.event.pull_request.head.sha }} # For pull_request_target
- name: Set up Python v3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run pytest
run: |
pytest