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
4 changes: 2 additions & 2 deletions .github/workflows/arduino-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

# See: https://github.com/arduino/arduino-lint-action#readme
- name: Arduino Lint
uses: arduino/arduino-lint-action@v1
uses: arduino/arduino-lint-action@v2
with:
path: megaavr
token: ${{ secrets.GITHUB_TOKEN }}
42 changes: 21 additions & 21 deletions .github/workflows/check-code-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ on:
paths:
- ".github/workflows/check-code-formatting.yml"
- "megaavr/bootloaders/**"
# - "megaavr/cores/**"
# - "megaavr/cores/**"
- "megaavr/libraries/**"
- "megaavr/variants/**"
push:
paths:
- ".github/workflows/check-code-formatting.yml"
- "megaavr/bootloaders/**"
# - "megaavr/cores/**"
# - "megaavr/cores/**"
- "megaavr/libraries/**"
- "megaavr/variants/**"
# workflow_dispatch event allows the workflow to be triggered manually
Expand Down Expand Up @@ -51,42 +51,42 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Check code formatting
uses: spencekonde/artistic-style-action@main
uses: wke67/artistic-style-action@main
with:
options-file-path: ${{ env.OPTIONS_FILE_PATH }}
name-patterns: |
${{ env.NAME_PATTERNS }}
target-paths: |
- megaavr/bootloaders

# cores:
# runs-on: ubuntu-latest
cores:
runs-on: ubuntu-latest

# steps:
# - name: Checkout
# uses: actions/checkout@v4
steps:
- name: Checkout
uses: actions/checkout@v6

# - name: Check code formatting
# uses: per1234/artistic-style-action@main
# with:
# options-file-path: ${{ env.OPTIONS_FILE_PATH }}
# name-patterns: |
# ${{ env.NAME_PATTERNS }}
# target-paths: |
# - megaavr/cores
- name: Check code formatting
uses: wke67/artistic-style-action@main
with:
options-file-path: ${{ env.OPTIONS_FILE_PATH }}
name-patterns: |
${{ env.NAME_PATTERNS }}
target-paths: |
- megaavr/cores

libraries:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Check code formatting
uses: spencekonde/artistic-style-action@main
uses: wke67/artistic-style-action@main
with:
options-file-path: ${{ env.OPTIONS_FILE_PATH }}
name-patterns: |
Expand All @@ -99,10 +99,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Check code formatting
uses: spencekonde/artistic-style-action@main
uses: wke67/artistic-style-action@main
with:
options-file-path: ${{ env.OPTIONS_FILE_PATH }}
name-patterns: |
Expand Down
39 changes: 0 additions & 39 deletions .github/workflows/check-keywords-txt.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/check-library-structure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install arduino-ci-script
uses: per1234/install-arduino-ci-script-action@main
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/compile-examples-macros.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ jobs:
- device-family: dd
int-osc: 20


steps:
- name: Checkout repository
uses: actions/checkout@v6
Expand All @@ -228,7 +227,7 @@ jobs:
# The sketches don't have any external library dependencies, so just define an empty array
-
verbose: false
enable-deltas-report: false
enable-deltas-report: true
github-token: ${{ secrets.GITHUB_TOKEN }}
enable-warnings-report: true
sketches-report-path: sketches-reports
6 changes: 2 additions & 4 deletions .github/workflows/compile-regression-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
ref: test

# See: https://github.com/arduino/compile-sketches/README.md

Expand All @@ -208,7 +206,7 @@ jobs:
# The sketches don't have any external library dependencies, so just define an empty array
-
verbose: false
enable-deltas-report: false
enable-deltas-report: true
github-token: ${{ secrets.GITHUB_TOKEN }}
enable-warnings-report: false
enable-warnings-report: true
sketches-report-path: sketches-reports
Loading