зеркало из
https://github.com/viginum-datalab/twscrape.git
synced 2025-10-29 21:16:25 +02:00
28 строки
492 B
YAML
28 строки
492 B
YAML
name: test
|
|
|
|
on: [push]
|
|
|
|
env:
|
|
PIP_ROOT_USER_ACTION: ignore
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.10", "3.11"]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: install dependencies
|
|
run: pip install -e .[dev]
|
|
|
|
- name: lint
|
|
run: make lint
|
|
|
|
- name: test
|
|
run: make test
|