Skip to content

Commit

Permalink
test_workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanguyvans committed Dec 11, 2023
1 parent 99b5203 commit ebbbf7f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
python -m unittest discover -v
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python consensus protocols

![Cirrus CI - Build Status](https://img.shields.io/cirrus/github/Tanguyvans/consensus_protocols/main?label=build)
![Build Status](https://github.com/Tanguyvans/consensus_protocols/actions/workflows/ci.yml/badge.svg)

This project aims to provide a simple way to visualize and interact with various consensus protocols implemented in Python. The included protocols are designed to facilitate understanding and exploration of their mechanisms. It's important to note that these implementations are intended for educational purposes and are not meant for direct production use.

Expand Down

0 comments on commit ebbbf7f

Please sign in to comment.