-
Notifications
You must be signed in to change notification settings - Fork 12
36 lines (32 loc) · 956 Bytes
/
simple_checks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: simple_checks
env:
PROJECT_NAME: PointCloudSegmentation
on:
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r test/requirements.txt
pip freeze
- name: Simple Checks
run: |
pwd
pip install pytest
pytest -q test/simple_checks.py -v
- name: Docker Push VK Notify
uses: alphamusic/VK-Notifications@1.0.2
env:
VK_USERS : ${{ secrets.VK_ME }}, ${{ secrets.VK_POLINA }}, ${{ secrets.VK_ILYA }}
VK_MESSAGE: \#github_notify %0A ${{ github.actor}} on ${{ github.event_name }} %0A Testing status✅
VK_TOKEN: ${{ secrets.VK_TOKEN }}