-
Notifications
You must be signed in to change notification settings - Fork 12
36 lines (32 loc) · 959 Bytes
/
pipeline.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
# This workflow will install Python dependencies using poetry, run unit , bdd tests and scan for the vulnerabilities in the dependencies
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: unit, bdd tests & scan dependencies
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
unit-bdd-tests-and-scan-dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
pip install --user poetry
poetry install
- name: Run Unit Test
run: |
make unit-test
- name: Run BDD Test
run: |
make bdd-test
- name: Dependency vulnerability scan
run: |
make dependency-vulnerability-scan