-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from tarampampam/main
Library error LS007 fixed, simple CI integrated
- Loading branch information
Showing
5 changed files
with
38 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# docs: <https://help.github.com/en/articles/about-code-owners> | ||
|
||
* @AlexGyver |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: tests | ||
|
||
on: | ||
push: | ||
branches: [master, main] | ||
paths-ignore: | ||
- '**.md' | ||
tags-ignore: | ||
- '**' | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
|
||
jobs: # Docs: <https://help.github.com/en/articles/workflow-syntax-for-github-actions> | ||
lint: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
# Its focus is on the structure, metadata, and configuration of Arduino projects, rather than the code | ||
- name: Run the linter | ||
uses: arduino/arduino-lint-action@v1 # https://github.com/arduino/arduino-lint-action | ||
with: | ||
project-type: library | ||
library-manager: update | ||
compliance: specification |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## IDEs | ||
/.vscode | ||
/.idea | ||
|
||
## Temp files/dirs | ||
/tmp | ||
/temp | ||
/ignore |
Binary file not shown.
Binary file not shown.