Skip to content

chore(main): release transcribe-me 1.0.1 (#21) #102

chore(main): release transcribe-me 1.0.1 (#21)

chore(main): release transcribe-me 1.0.1 (#21) #102

Workflow file for this run

name: Build
on:
push:
branches:
- main
paths-ignore:
- 'docs/**'
- '*.md'
- LICENSE
- '.github/**'
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
- '*.md'
- LICENSE
- '.github/**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-tags: true
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test,all]"
- name: Lint with flake8
run: |
pip install flake8
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Test with pytest
run: |
pytest tests/
- name: Build package
run: |
pip install build
python -m build