Skip to content

Commit 59c999e

Browse files
committed
⚠️ try to init a workflow
1 parent ef063a4 commit 59c999e

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Build All Examples
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build-examples:
13+
name: Build Arduino Examples for Digispark
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
20+
- name: Compile examples
21+
uses: arduino/compile-sketches@v1
22+
with:
23+
fqbn: "digistump:avr:digispark-tiny"
24+
platforms: |
25+
- name: digistump:avr
26+
source-url: https://raw.githubusercontent.com/ArminJo/DigistumpArduino/master/package_digistump_index.json
27+
sketch-paths: |
28+
- examples
29+
libraries: |
30+
- source-path: ./src
31+
verbose: true
32+
github-token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.DS_Store
1+
.DS_Store
2+
.secrets

0 commit comments

Comments
 (0)