diff --git a/.github/workflows/build_examples.yaml b/.github/workflows/build_examples.yaml index f702867..dc5a843 100644 --- a/.github/workflows/build_examples.yaml +++ b/.github/workflows/build_examples.yaml @@ -13,6 +13,6 @@ jobs: if: ${{ ! contains(github.event.head_commit.message, 'ci skip') }} uses: EnviroDIY/workflows/.github/workflows/build_examples.yaml@main with: - boards_to_build: 'all' - examples_to_build: 'all' + boards_to_build: all + examples_to_build: all secrets: inherit diff --git a/examples/example_dependencies.json b/examples/example_dependencies.json new file mode 100644 index 0000000..9f43b8e --- /dev/null +++ b/examples/example_dependencies.json @@ -0,0 +1,25 @@ +{ + "action_cache_version": 1, + "dependencies": [ + { + "name": "SdFat", + "owner": "greiman", + "library id": "322", + "url": "https://github.com/greiman/SdFat", + "version": "~2.2.3", + "note": "SdFat - FAT16/FAT32 file system for SD cards.", + "authors": ["Bill Greiman"], + "frameworks": "arduino", + "platforms": "atmelavr, atmelsam" + }, + { + "name": "SparkFun Qwiic RTC RV8803 Arduino Library", + "owner": "sparkfun", + "url": "https://github.com/sparkfun/SparkFun_RV-8803_Arduino_Library.git", + "version": "~1.2.9", + "note": "For the RV-8803 RTC", + "frameworks": "arduino", + "platforms": "atmelavr, atmelsam" + } + ] +}