-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (41 loc) · 1.18 KB
/
unit_test.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
36
37
38
39
40
41
42
43
name: Unittests
on:
workflow_dispatch:
push:
paths:
- .github/workflows/unit_test.yml
- cat_win/**
- workflowHelper/**
# specify (all) branches such that the workflow will
# not trigger on tag/release-creation
branches:
- '**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: ['3.8', '3.9', '3.11', 'pypy-3.8', 'pypy-3.9']
steps:
- name: Set Windows Line Ending
run: |
git config --global core.autocrlf true
- name: Git Checkout
uses: actions/checkout@v3
- name: Install Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Update PIP
run: |
python -m pip install --upgrade pip
- name: Setup Test Dependencies
run: |
python -m pip install --upgrade -r ./workflowHelper/requirements.txt
- name: Start UnitTests
run: |
python -m unittest discover -s cat_win.tests -p test*.py