Skip to content

actions syntax fix

actions syntax fix #12

Workflow file for this run

name: build

Check failure on line 1 in .github/workflows/unit-tests.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/unit-tests.yaml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: black_formatter
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}}
coveralls_finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls finished
uses: AndreMiras/coveralls-python-action@develop
with:
parallel-finished: true
black_formatter:
lint:
needs: tests
runs-on: ubuntu-latest
steps:
uses: psf/black@stable
with:
options: "--check --verbose"
src: ["google_books/", "tests/"]