-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create default driver github workflow
- Loading branch information
1 parent
b1a7227
commit 91dcb61
Showing
4 changed files
with
36 additions
and
73 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,13 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- "^[0-9]+.[0-9]+.[0-9]+" | ||
|
||
jobs: | ||
build_and_deploy: | ||
uses: sensirion/.github/.github/workflows/driver.python.pypi_publish.yml@main | ||
secrets: | ||
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }} | ||
|
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,11 @@ | ||
name: Publish Documentation | ||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- "^[0-9]+.[0-9]+.[0-9]+" | ||
|
||
jobs: | ||
documentation: | ||
uses: sensirion/.github/.github/workflows/driver.python.documentation.yml@main |
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,12 @@ | ||
name: Validate and Test Python Package | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
test: | ||
uses: sensirion/.github/.github/workflows/driver.python.test.yml@main |
This file was deleted.
Oops, something went wrong.