Skip to content

prepare for v3

prepare for v3 #129

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ master ]
env:
CODECOV_TOKEN: 690ea968-186e-40df-b491-478de6dc0746
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
poetry-version: ["1.8.4"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v3
with:
poetry-version: ${{ matrix.poetry-version }}
- run: poetry install
- run: poetry run pytest --cov=lokalise --cov-report=lcov
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
path-to-lcov: ./coverage.lcov