Skip to content

Commit

Permalink
add build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmarcano committed Aug 9, 2023
1 parent bb54381 commit da70310
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build firmware

on:
push:
branches:
- "master"

jobs:
build:
runs-on: ubuntu-20.04

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

- name: Installing platformio
run: pip3 install -U platformio

- name: Building a firmware
run: |
pio lib install
pio run
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
A project to control a peanut, coffee & cocoa roaster with an ESP32
</p>
<p align="center">
<a href="https://github.com/sindresorhus/awesome">
<img alt="Awesome" src="https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg">
<a href="https://github.com/gabrielmarcano/esp32-roaster/blob/master/.github/workflows/build.yml">
<img alt="Build" src="https://img.shields.io/github/actions/workflow/status/gabrielmarcano/esp32-roaster/build.yml">
</a>
<a href="https://github.com/gabrielmarcano/esp32-roaster/releases">
<img alt="GitHub release" src="https://img.shields.io/github/v/release/gabrielmarcano/esp32-roaster?filter=*alpha&logo=github">
Expand Down

0 comments on commit da70310

Please sign in to comment.