Skip to content

Commit cba8452

Browse files
authored
Merge pull request #14 from ricaun/develop
Add Compile-Sketch.yml
2 parents 237cfc7 + 12b6dca commit cba8452

3 files changed

Lines changed: 26 additions & 24 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Compile Sketch
2+
3+
# The workflow will run on every push and pull request to the repository
4+
on:
5+
- push
6+
- pull_request
7+
8+
jobs:
9+
Compile-Sketch:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
# This step makes the contents of the repository available to the workflow
14+
- name: Checkout repository
15+
uses: actions/checkout@v2
16+
17+
# For more information: https://github.com/arduino/compile-sketches#readme
18+
- name: Compile sketch
19+
uses: arduino/compile-sketches@v1
20+
with:
21+
# The default is to compile for the Arduino Uno board. If you want to compile for other boards, use the `fqbn` input.
22+
sketch-paths: |
23+
./examples/ArduinoUniqueID
24+
./examples/ArduinoUniqueID8

.travis.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
This Library gets the Unique ID / Manufacture Serial Number from the Atmel AVR, SAM, SAMD, STM32, and ESP Microcontroller.
44

5-
[![Build Status](https://travis-ci.org/ricaun/ArduinoUniqueID.svg?branch=master)](https://travis-ci.org/ricaun/ArduinoUniqueID)
5+
[![Compile Sketch](https://github.com/ricaun/ArduinoUniqueID/actions/workflows/Compile-Sketch.yml/badge.svg)](https://github.com/ricaun/ArduinoUniqueID/actions)
6+
67

78
# Microcontrollers
89

0 commit comments

Comments
 (0)