-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (37 loc) · 798 Bytes
/
Copy pathtest.yml
File metadata and controls
44 lines (37 loc) · 798 Bytes
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
name: Test
on:
push:
pull_request:
workflow_dispatch:
workflow_call:
permissions:
contents: read
pages: write
actions: read
id-token: write
jobs:
flake8:
permissions:
contents: read
pages: read
id-token: none
name: Lint (Flake8)
uses: ./.github/workflows/flake8.yml # Call the reusable workflow
secrets: inherit
pyright:
permissions:
contents: read
pages: read
id-token: none
name: Lint (PyRight)
uses: ./.github/workflows/pyright.yml # Call the reusable workflow
secrets: inherit
pytest:
permissions:
contents: read
pages: read
id-token: none
name: Test (Pytest)
#needs: [flake8]
uses: ./.github/workflows/pytest.yml # Call the reusable workflow
secrets: inherit