-
Notifications
You must be signed in to change notification settings - Fork 2
27 lines (27 loc) · 889 Bytes
/
testing.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
name: Unit Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python all python version
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: pip install -r requirements.txt
- name: Regex Tests
run: python -m unittest tests/test_regex.py
- name: GitLab Tests
run: python -m unittest tests/test_format_gitlab.py
- name: Slack EG Tests
run: python -m unittest tests/test_format_slack_eg.py
- name: Slack STD Tests
run: python -m unittest tests/test_format_slack_std.py
- name: Stack Overflow Tests
run: python -m unittest tests/test_format_stack_overflow.py