We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9beb4ef commit 77852e7Copy full SHA for 77852e7
.github/workflows/ci.yml
@@ -3,6 +3,22 @@ name: Continuous Integration
3
on: [push]
4
5
jobs:
6
+ build:
7
+ name: "Build"
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ - name: Build library ZIP
12
+ run: |
13
+ mkdir BlenderServoAnimation
14
+ cp -R src examples library.properties README.md LICENSE BlenderServoAnimation
15
+ zip -r blender_servo_animation_arduino_library BlenderServoAnimation
16
+ - name: Archive library ZIP
17
+ uses: actions/upload-artifact@v3
18
+ with:
19
+ name: blender_servo_animation_arduino_library.zip
20
+ path: |
21
+ blender_servo_animation_arduino_library.zip
22
lint:
23
name: "Lint"
24
runs-on: ubuntu-22.04
0 commit comments