Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ In this project, we define a workflow for each target platform. **If you're loo

The reason that all platforms are tested in _this_ project is to ensure that, as a framework, `arduino_ci` will run properly on any developer's personal workstation (regardless of OS).

For testing an individual Arduino library in the context of GitHub, [Linux is the cheapest option](https://docs.github.com/en/free-pro-team@latest/github/setting-up-and-managing-billing-and-payments-on-github/about-billing-for-github-actions) and produces results identical to the other OSes.
For testing an individual Arduino library in the context of GitHub, [Linux is the cheapest option](https://docs.github.com/en/free-pro-team@latest/github/setting-up-and-managing-billing-and-payments-on-github/about-billing-for-github-actions) and should produce results identical to the other OSes.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This is the name of the workflow, visible on GitHub UI
name: linux

on: [pull_request]
on: [push, pull_request]

jobs:
"unittest_lint_sampleproject":
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This is the name of the workflow, visible on GitHub UI
name: macos

on: [pull_request]
on: [push, pull_request]

jobs:
"unittest_lint_sampleproject":
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This is the name of the workflow, visible on GitHub UI
name: windows

on: [pull_request]
on: [push, pull_request]

jobs:
"unittest_lint_sampleproject":
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Changed
- Change 266 files from CRLF to LF.
- Run tests on push as well as on a pull request so developers can see impact

### Deprecated

Expand Down