diff --git a/.github/workflows/README.md b/.github/workflows/README.md index 7e1b5195..0e2ce744 100644 --- a/.github/workflows/README.md +++ b/.github/workflows/README.md @@ -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. diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index 8a05f584..9c9247a8 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -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": diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index ffd88f9d..96357648 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -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": diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index 6001624e..6a4afa72 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -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": diff --git a/CHANGELOG.md b/CHANGELOG.md index d97279dc..74df5b83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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