17 lines
371 B
YAML
17 lines
371 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install
|
|
run: |
|
|
python3 -m ensurepip --upgrade 2>/dev/null || true
|
|
python3 -m pip install --upgrade pip
|
|
python3 -m pip install -e .
|
|
python3 -m pip install pytest
|
|
- name: Test
|
|
run: python3 -m pytest tests/ -v
|