Skip to content

Merge pull request #34 from BookOps-CAT/monthly_check_2024-08-15 #113

Merge pull request #34 from BookOps-CAT/monthly_check_2024-08-15

Merge pull request #34 from BookOps-CAT/monthly_check_2024-08-15 #113

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r dev-requirements.txt
- name: Run tests
run: python -m pytest --cov=acc_lcsh_check/
- name: Send report to Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
github-token: ${{ secrets.GITHUB_TOKEN}}