Skip to content

Commit

Permalink
Added python version to GitHub actions
Browse files Browse the repository at this point in the history
Signed-off-by: Sara Damiano <[email protected]>
  • Loading branch information
SRGDamia1 committed Jun 28, 2022
1 parent 819524c commit 1c76039
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 6 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'daily'
labels:
- 'CI/CD'
commit-message:
prefix: ci
4 changes: 3 additions & 1 deletion .github/workflows/build_documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'

# This should be pulled from cache, if there's not a new version
- name: Install PlatformIO
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/build_examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'

# This should be pulled from cache, if there's not a new version
- name: Install PlatformIO
Expand Down Expand Up @@ -85,4 +87,4 @@ jobs:
pio lib --global install ${{ env.LIBRARY_INSTALL_SOURCE }}
pio lib --global install EnableInterrupt
platformio ci --board=mayfly --board=feather32u4 --board=adafruit_feather_m0 --board=uno --board=megaatmega2560
pio lib --global uninstall SDI-12
pio lib --global uninstall SDI-12
4 changes: 3 additions & 1 deletion .github/workflows/prepare_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
restore-keys: ${{ runner.os }}-pip-

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'

# This should be pulled from cache, if there's not a new version
- name: Install PlatformIO
Expand Down
18 changes: 16 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

****
***


## [Unreleased]

### Changed
- Added python version to GitHub actions (for PlatformIO)

### Added

### Removed

### Fixed

***

## v2.1.4 (2021-05-05) [Revert wake delay to 0ms](https://github.com/EnviroDIY/Arduino-SDI-12/releases/tag/v2.1.4)

Expand Down Expand Up @@ -79,4 +93,4 @@ Maintaining interrupt control for SAMD processors as there are no interrupt vect

## v1.0.1 (2017-05-16) [Initial Release](https://github.com/EnviroDIY/Arduino-SDI-12/releases/tag/v1.0.1)

The first "official" release of this interrupt-based SDI-12 library for AVR and SAMD Arduino boards.
The first "official" release of this interrupt-based SDI-12 library for AVR and SAMD Arduino boards.

0 comments on commit 1c76039

Please sign in to comment.