-
Notifications
You must be signed in to change notification settings - Fork 0
120 lines (112 loc) · 3.1 KB
/
cicd.yaml
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
name: CI/CD
on:
push:
branches:
- '**'
pull_request:
branches:
- main
workflow_dispatch:
env:
POETRY_VERSION: 1.1.13
PSR_VERSION: 7.28.1
CACHE_NUMBER: 0
jobs:
form:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Nox and Poetry
uses: ./.github/actions/setup_nox
with:
cache_number: ${{ env.CACHE_NUMBER }}
poetry_version: ${{ env.POETRY_VERSION }}
- name: Format
run: nox -s form
- name: Commit blackened files
uses: EndBug/add-and-commit@v9
with:
message: "style(*): blacken files"
default_author: github_actions
lint:
runs-on: ubuntu-latest
needs: [ form ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Nox and Poetry
uses: ./.github/actions/setup_nox
with:
cache_number: ${{ env.CACHE_NUMBER }}
poetry_version: ${{ env.POETRY_VERSION }}
- name: Run flake8 lints
run: nox -s lint
type:
runs-on: ubuntu-latest
needs: [ form ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Nox and Poetry
uses: ./.github/actions/setup_nox
with:
cache_number: ${{ env.CACHE_NUMBER }}
poetry_version: ${{ env.POETRY_VERSION }}
- name: Run mypy
run: nox -s type
security:
runs-on: ubuntu-latest
needs: [ form ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Nox and Poetry
uses: ./.github/actions/setup_nox
with:
cache_number: ${{ env.CACHE_NUMBER }}
poetry_version: ${{ env.POETRY_VERSION }}
- name: Check for Dependency Vulnerabilities
run: nox -s security
test:
runs-on: ${{ matrix.os }}
needs: [ lint, type, security ]
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Nox and Poetry
uses: ./.github/actions/setup_nox
with:
cache_number: ${{ env.CACHE_NUMBER }}
poetry_version: ${{ env.POETRY_VERSION }}
- name: Test Code and Docs
run: nox -s tests
- name: Upload to codecov
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
env_vars: ${{ matrix.os }}
fail_ci_if_error: true
verbose: true
release:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
needs: [lint, test, security]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Upload to PyPI
uses: ./.github/actions/setup_psr
with:
gh_token: ${{ secrets.GITHUB_TOKEN }}
pypi_token: ${{ secrets.PYPI_TOKEN }}
cache_number: ${{ env.CACHE_NUMBER }}
poetry_version: ${{ env.POETRY_VERSION }}
psr_version: ${{ env.PSR_VERSION }}