Skip to content

Commit

Permalink
Merge branch 'main' of github.com:ryanchaiyakul/potentiostat
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanchaiyakul committed Jan 8, 2024
2 parents b36cf1d + d839d25 commit 1318610
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/platformio.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: PlatformIO CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Build PlatformIO Project
run: pio run
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Potentiostat

[![PlatformIO CI](https://github.com/ryanchaiyakul/potentiostat/actions/workflows/platformio.yml/badge.svg)](https://github.com/ryanchaiyakul/potentiostat/actions/workflows/platformio.yml)

I2BL potentiostat library and project.

# Goals
Expand Down Expand Up @@ -33,4 +35,4 @@ git clone --recurse-submodules [email protected]:ryanchaiyakul/potentiostat.git

# Development Guide

Create a valid class that inherits from Voltammetry defined in [Voltammetry.h](lib/Voltammetry/Voltammetry.h).
Create a valid class that inherits from Voltammetry defined in [Voltammetry.h](lib/Voltammetry/Voltammetry.h).

0 comments on commit 1318610

Please sign in to comment.