Skip to content
This repository has been archived by the owner on Feb 20, 2025. It is now read-only.

update readme

update readme #49

Workflow file for this run

name: Pyt SAST
on:
push:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install python-taint
- name: Analysing the code with pyt
run: |
cd backend && pyt .