* add makefile * bump version * add isort and yapf * update contributing.md * update PR template * spelling check
24 lines
587 B
YAML
24 lines
587 B
YAML
name: Data Profile
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
profile:
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(github.event.head_commit.message, 'ci skip')"
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
- name: Upgrade pip
|
|
run: |
|
|
python -m pip install --upgrade pip setuptools wheel
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install ".[dev]" --upgrade
|
|
- name: Test with pytest
|
|
run: |
|
|
pytest test/throughput --durations=0 -v
|