Compare commits
2 commits
462068f228
...
9e2fb188ab
Author | SHA1 | Date | |
---|---|---|---|
9e2fb188ab | |||
d958956f8d |
1 changed files with 25 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
# branches: main
|
||||||
|
|
||||||
pipeline:
|
pipeline:
|
||||||
unit_tests:
|
unit_tests:
|
||||||
image: mquade/poetry:3.9-1.1.11
|
image: mquade/poetry:3.9-1.1.11
|
||||||
|
@ -21,3 +23,26 @@ pipeline:
|
||||||
- poetry install
|
- poetry install
|
||||||
- pip install mypy
|
- pip install mypy
|
||||||
- mypy .
|
- mypy .
|
||||||
|
|
||||||
|
build_dist:
|
||||||
|
image: mquade/poetry:3.9-1.1.11
|
||||||
|
commands:
|
||||||
|
- poetry config virtualenvs.create false
|
||||||
|
- poetry install
|
||||||
|
- poetry build
|
||||||
|
when:
|
||||||
|
branch: main
|
||||||
|
|
||||||
|
notify_matrix:
|
||||||
|
image: plugins/matrix
|
||||||
|
settings:
|
||||||
|
homeserver: https://matrix.org
|
||||||
|
roomid:
|
||||||
|
from_secret: matrix_roomid
|
||||||
|
userid:
|
||||||
|
from_secret: matrix_userid
|
||||||
|
accesstoken:
|
||||||
|
from_secret: matrix_token
|
||||||
|
when:
|
||||||
|
status: [ success, failure ]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue