-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (32 loc) · 1004 Bytes
/
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Tests
on:
push:
branches: [ main, master, dev ]
paths:
- '**.py'
pull_request:
branches: [ main, master ]
jobs:
Test:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: ["ubuntu", "macos", "windows"]
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout package repository
uses: actions/checkout@v3
- name: Deploying miniconda
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
environment-file: environment.yaml
activate-environment: test
- name: Building & Testing conda package
run: |
conda install -y python pytest pytest-cov pytest-mock
python -m pytest --cov