18 lines
368 B
YAML
18 lines
368 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Python
|
|
run: |
|
|
apt-get update && apt-get install -y python3 python3-pip
|
|
- name: Install dependencies
|
|
run: |
|
|
pip3 install -e .
|
|
pip3 install pytest
|
|
- name: Run tests
|
|
run: pytest confsync/tests/ -v
|