23 lines
447 B
YAML
23 lines
447 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10'
|
|
- name: Install
|
|
run: |
|
|
pip install -e .
|
|
pip install pytest
|
|
- name: Test
|
|
run: pytest confsync/tests/ -v
|