Skip to content

Commit ae2bff1

Browse files
committed
create default driver github workflow
1 parent 8784601 commit ae2bff1

4 files changed

Lines changed: 36 additions & 135 deletions

File tree

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
tags:
6+
- "^[0-9]+.[0-9]+.[0-9]+"
7+
8+
jobs:
9+
build_and_deploy:
10+
uses: sensirion/.github/.github/workflows/driver.python.pypi_publish.yml@main
11+
secrets:
12+
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
13+

.github/workflows/build-docs.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Publish Documentation
2+
on:
3+
push:
4+
branches:
5+
- master
6+
tags:
7+
- "^[0-9]+.[0-9]+.[0-9]+"
8+
9+
jobs:
10+
documentation:
11+
uses: sensirion/.github/.github/workflows/driver.python.documentation.yml@main

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Validate and Test Python Package
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
push:
7+
branches:
8+
- master
9+
10+
jobs:
11+
test:
12+
uses: sensirion/.github/.github/workflows/driver.python.test.yml@main

.gitlab-ci.yml

Lines changed: 0 additions & 135 deletions
This file was deleted.

0 commit comments

Comments
 (0)