-
Notifications
You must be signed in to change notification settings - Fork 3
/
python-tests.yml
43 lines (39 loc) · 1.17 KB
/
python-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
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
push:
pull_request:
# Schedule a nightly build. Times are UTC
# See https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events
schedule:
# 5:15 am UTC (https://en.wikipedia.org/wiki/5:15)
- cron: '15 5 * * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# Default builds are on Ubuntu
os: [ubuntu-latest]
python-version: [3.6, 3.9]
include:
# Also test on macOS and Windows using latest Python 3
- os: macos-latest
python-version: 3.x
- os: windows-latest
python-version: 3.x
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install .
- name: Test with unittest
run: |
python test/test_ontology.py