-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also use cached pull for astyle Signed-off-by: simonmicro <[email protected]>
- Loading branch information
1 parent
5d4a1a3
commit aeb9b3c
Showing
4 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,10 @@ jobs: | |
runs-on: ubuntu-latest | ||
if: ${{ github.repository == 'Open-Smartwatch/open-smartwatch-os' }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Checkout repository and submodules | ||
uses: nschloe/[email protected] | ||
with: | ||
# submodules: recursive # do not access any submodules to not accidentially modify them | ||
ref: ${{ github.head_ref }} | ||
- name: astyle | ||
uses: addnab/docker-run-action@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
uses: nschloe/[email protected] | ||
with: | ||
submodules: recursive | ||
- uses: dorny/paths-filter@v2.11.1 | ||
- uses: dorny/paths-filter@v3 | ||
id: filter | ||
with: | ||
filters: | | ||
|
@@ -48,12 +48,12 @@ jobs: | |
with: | ||
submodules: recursive | ||
- name: Cache pip | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/pip | ||
key: pip-${{ runner.os }} | ||
- name: Cache PlatformIO | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.platformio | ||
key: platformio-${{ runner.os }} | ||
|
@@ -66,7 +66,7 @@ jobs: | |
run: brew install swig | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
- name: Install PlatformIO | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: nschloe/[email protected] | ||
with: | ||
submodules: recursive | ||
- uses: dorny/paths-filter@v2.11.1 | ||
- uses: dorny/paths-filter@v3 | ||
id: filter | ||
with: | ||
filters: | | ||
|
@@ -63,19 +63,19 @@ jobs: | |
with: | ||
submodules: recursive | ||
- name: Cache pip | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/pip | ||
key: pip-${{ runner.os }} | ||
- name: Cache PlatformIO | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.platformio | ||
key: platformio-${{ runner.os }} | ||
- name: Install swig | ||
run: sudo apt-get update && sudo apt-get -y install swig | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
- name: Install PlatformIO | ||
|