checkout/.github/workflows/test.yaml

38 lines
992 B
YAML
Raw Normal View History

2023-03-25 20:24:12 +01:00
name: Test
on:
workflow_dispatch:
workflow_call:
permissions:
contents: read
jobs:
tests:
name: Python tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: pip
- name: Install dependencies
run: |
pip install pip-tools
pip-sync requirements.txt requirements-dev.txt
2023-03-25 20:39:29 +01:00
sudo apt-get update
sudo apt-get install -y --no-install-recommends gettext
2023-03-25 20:24:12 +01:00
- name: Setup pre-commit cache
uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Check pre-commit
run: pre-commit run --show-diff-on-failure --color=always --all-files
- name: Test
2023-03-25 20:32:44 +01:00
run: inv test-cov
2023-03-25 20:24:12 +01:00
working-directory: ./src/