-
-
Notifications
You must be signed in to change notification settings - Fork 78
54 lines (46 loc) · 1.2 KB
/
py-tests.yaml
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
45
46
47
48
49
50
51
52
53
54
on:
pull_request:
name: "py-tests"
jobs:
build:
name: Testing on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -el {0}
strategy:
matrix:
include:
- os: ubuntu-latest
- os: macos-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Load .env file
uses: xom9ikk/dotenv@v2
with:
path: ./
- name: Make loadable
run: |
cd core
make loadable
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
auto-activate-base: true
activate-environment: anaconda-client-env
python-version: "3.10"
- name: Install SQLite
run: conda install sqlite
- name: Check SQLite Version
run: echo "import sqlite3; print(sqlite3.sqlite_version)" | python
# - name: Install Python
# uses: actions/setup-python@v4
# with:
# python-version: "3.10"
- name: Install pip
run: |
python -m pip install --upgrade pip
- name: Test
run: cd py/correctness && ./install-and-test.sh