forked from construct/construct
-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (24 loc) · 768 Bytes
/
main.yml
File metadata and controls
26 lines (24 loc) · 768 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
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [ '3.6', '3.7', '3.8', '3.9', 'pypy3' ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-benchmark enum34 numpy arrow ruamel.yaml cloudpickle lz4
- name: Run tests
run: |
py.test tests/ --benchmark-disable --showlocals --verbose