1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2024-11-24 08:12:13 +02:00

run tests on push

This commit is contained in:
MarkParker5 2023-03-12 12:08:50 +01:00
parent 6303bfefc9
commit da63bf3067
No known key found for this signature in database
GPG Key ID: 0632FDCE0F9ED5C7

32
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: Run tests
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run pytest
run: |
poetry run pytest
- name: Duck Notifier
if: failure()
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TG_CHAT_ID }}
token: ${{ secrets.TG_BOT_TOKEN }}
message: ❌ MajorDom-VA tests failed on branch ${{ github.ref }}