Skip to content

[f] fix encoding

[f] fix encoding #6

Workflow file for this run

name: autotests
on: [push, pull_request]
jobs:
autotests-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: dependencies
run: |
python -m ensurepip
python -m pip install -U uv
python -m uv venv
python -m uv pip install -r pyproject.toml --extra=tests --python=.venv/bin/python
- name: tests
run: tg_session=${{ secrets.tg_session_lin }} big_tests=true .venv/bin/python reposter
autotests-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: set up python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: dependencies
run: |
python -m ensurepip
python -m pip install -U uv
python -m uv venv
python -m uv pip install -r pyproject.toml --extra=tests --python=.venv/scripts/python.exe
- name: tests
run: |
$env:tg_session = '${{ secrets.tg_session_win }}'
$env:big_tests = 'true'
.venv/scripts/python reposter