forked from serious-scaffold/ss-python
-
-
Notifications
You must be signed in to change notification settings - Fork 0
85 lines (85 loc) · 2.16 KB
/
ci.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
cache: pip
python-version: ${{ matrix.python-version }}
- run: env | sort
- run: make dev-lint
- run: make lint-check
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
cache: pip
python-version: ${{ matrix.python-version }}
- run: env | sort
- run: make dev-tests
- run: make tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
flags: ${{ matrix.python-version }}
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
consistency:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Git
run: |
git config --global user.name github-actions
git config --global user.email github-actions@github.com
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
cache: pip
python-version: ${{ matrix.python-version }}
- run: env | sort
- name: Install copier for template rendering
run: python -m pip install --user copier
- name: Generate the project with the default value
run: |
rm -rf src/serious_scaffold
copier copy -x '!src/serious_scaffold' -r HEAD -f . .
- run: git diff
- run: git status --porcelain
- run: |
if [[ -n `git status --porcelain` ]]; then
exit 1
fi
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
name: CI
on:
pull_request:
types:
- opened
- synchronize
push:
branches:
- main