Updated to support Stack Overflow Watchman #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |