-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 843 Bytes
/
unittests.yml
File metadata and controls
38 lines (32 loc) · 843 Bytes
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
---
name: Unittests
on:
pull_request:
branches: [main]
types: [opened, synchronize]
jobs:
unittests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- name: checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install mamba
uses: mamba-org/setup-micromamba@v3
with:
environment-file: environment.yml
create-args: python=${{ matrix.python-version }}
init-shell: bash
- name: Unit tests
shell: bash -leo pipefail {0}
env:
PYTHONPATH: .
run: pytest --durations=10 --color=yes .