-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (36 loc) · 1.09 KB
/
build_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: "Build Testing"
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "20 1 * * mon"
workflow_dispatch:
defaults:
run:
shell: bash -l {0} # Login shell for conda
jobs:
tests:
name: "Testing on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
# TODO(teald): - macos-latest | Issue #39
steps:
- uses: "actions/checkout@v4"
- uses: excitedleigh/[email protected]
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.10"
- name: "Install and update pip"
run: |
conda install -c conda-forge pip
pip install --upgrade pip poetry
# - name: "Unit tests"
# run: nox -s build_tests_unit -x --verbose -- -xvv
- name: "Integration tests"
run: nox -s build_tests_integration -x --verbose -- -xvv