generated from ImperialCollegeLondon/poetry_template_2
-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (36 loc) · 1021 Bytes
/
ci-pip-tools.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Tests (pip-tools)
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
test-pip-tools:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python-version: ['3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install cookiecutter
run: pip install cookiecutter
- name: Create project from template
# Choose default options
run: cookiecutter . --no-input packaging=pip-tools
- name: Install project dependencies
working-directory: my_project
run: pip install .[dev]
- name: Run tests
working-directory: my_project
run: pytest
- name: Run pre-commit hooks for project
working-directory: my_project
run: |
git init
git add .
pre-commit run -a