build(deps-dev): bump mutmut from 3.2.2 to 3.2.3 #307
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |