Skip to content

formatting moved to tests job #10

formatting moved to tests job

formatting moved to tests job #10

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Bootstrap poetry
run: pipx install poetry
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest -v --cov=google_books/
- name: Send report to Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
paralle: true
flag-name: Unit Test
github-token: ${{ secrets.GITHUB_TOKEN}}
- name: Run black formatting
run: poetry run black --check google_books/ tests/
coveralls_finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls finished
uses: AndreMiras/coveralls-python-action@develop
with:
parallel-finished: true