10000 Creating a GitHub Action to run automated tests by prestoncarman · Pull Request #200 · Arduino-CI/arduino_ci · GitHub
[go: up one dir, main page]

Skip to content

Creating a GitHub Action to run automated tests #200

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 19 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Add `__AVR__` to defines when compiling
- Add documentation on how to use Arduino CI with GitHub Actions
- Allow tests to run locally on GitHub with out external set up with GitHub Actions (for all os environments)
- Add support for `diditalPinToPort()`, `digitalPinToBitMask()`, and `portOutputRegister()`

### Changed
- Move repository from https://github.com/ianfixes/arduino_ci to https://github.com/Arduino-CI/arduino_ci
Expand Down
2 changes: 1 addition & 1 deletion lib/arduino_ci/arduino_installation.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

require "arduino_ci/arduino_downloader_windows" if ArduinoCI::Host.os == :windows

DESIRED_ARDUINO_IDE_VERSION = "1.8.6".freeze
DESIRED_ARDUINO_IDE_VERSION = "1.8.13".freeze

module ArduinoCI

Expand Down
0