Skip to content

Merge pull request #39 from narumiruna/fix-workflow #26

Merge pull request #39 from narumiruna/fix-workflow

Merge pull request #39 from narumiruna/fix-workflow #26

Workflow file for this run

name: Python
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
python:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: ["3.10"]
poetry-version: ["1.7.1"]
steps:
- uses: actions/checkout@v4
- uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: |
poetry install
poetry run pip install torch --extra-index-url https://download.pytorch.org/whl/cpu
- name: Lint
run: poetry run flake8 -v .
- name: Test
run: poetry run pytest -v -s --cov=. --cov-report=xml tests
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}