-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (39 loc) · 890 Bytes
/
run_tests.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
44
name: Run Tests
on:
push:
branches:
- develop
tags: # ignores tag pushes
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
python-version:
#- "3.8"
- "3.9"
#- "3.10"
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Environment
uses: ./.github/actions/setup_environment
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip3 install -r requirements.txt
- name: Install Project
run: |
pip3 install .
- name: Run Tests
run:
pytest --no-header -v test