Skip to content

Revamp seigr_protocol Proto Definitions for Decentralized Data Structure #30

Revamp seigr_protocol Proto Definitions for Decentralized Data Structure

Revamp seigr_protocol Proto Definitions for Decentralized Data Structure #30

Workflow file for this run

name: Python Application CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: # Allows manual trigger
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3 # Updated to v3
- name: Set up Python
uses: actions/setup-python@v3 # Updated to v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
pytest