12 lines
231 B
YAML
12 lines
231 B
YAML
name: CI
|
|
on: [push, pull_request]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install and test
|
|
run: |
|
|
pip install pytest
|
|
pytest confsync/tests/ -v
|