42 lines
986 B
YAML
42 lines
986 B
YAML
name: test
|
|
|
|
on:
|
|
push: {}
|
|
pull_request: {}
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.10
|
|
- name: Setup poetry
|
|
uses: abatilo/actions-poetry@v2
|
|
with:
|
|
poetry-version: 1.3
|
|
- name: Install dependencies
|
|
run: poetry install
|
|
- name: Lint
|
|
run: poetry run pylama tsstats/
|
|
test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Setup poetry
|
|
uses: abatilo/actions-poetry@v2
|
|
with:
|
|
poetry-version: 1.3
|
|
- name: Install dependencies
|
|
run: poetry install
|
|
- name: Run tests
|
|
run: poetry run pytest tsstats/
|