-
Notifications
You must be signed in to change notification settings - Fork 10
80 lines (66 loc) · 1.9 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
---
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-ci
cancel-in-progress: true
jobs:
megalinter:
name: Run linters
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Checkout Code
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # pin@v4
- name: MegaLinter
id: ml
uses: oxsecurity/megalinter@5199c6377b4cb7faff749a1971636f3343db9fe6 # pin@v7
env:
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
project_checks:
name: Run project checks
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # pin@v4
- name: Set up poetry and install
uses: ./.github/actions/setup-poetry
- name: Pre-commit install
run: make pre-commit
- name: Run linting checks
run: make lint
- name: Run security checks
run: make security-check
- name: Check dependencies
run: make dep-cve-check
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
fail-fast: false
steps:
- name: Check out
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # pin@v4
- name: Set up poetry and install
uses: ./.github/actions/setup-poetry
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: make test
e2e-test:
runs-on: 'ubuntu-24.04'
permissions:
contents: read
steps:
- name: Check out
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # pin@v4
- uses: ./.github/actions/e2e-testing