Files
testdata-cli/.gitea/workflows/ci.yml

22 lines
450 B
YAML

name: CI
on:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
container:
image: python:3.11-slim
steps:
- name: Checkout
run: |
apt-get update
apt-get install -y git
git clone --depth 1 https://github.com/7000pctAUTO/snippet-manager.git .
- name: Install
run: pip install -e . pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v