Skip to content

Merge pull request #6 from Forced-Alignment-and-Vowel-Extraction/5-bu… #40

Merge pull request #6 from Forced-Alignment-and-Vowel-Extraction/5-bu…

Merge pull request #6 from Forced-Alignment-and-Vowel-Extraction/5-bu… #40

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
os:
- ubuntu-latest
- macos-latest
- windows-latest
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root --with dev
- name: Run tests
run: poetry run pytest
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: Forced-Alignment-and-Vowel-Extraction/fave-syllabify
files: coverage.xml