15 lines
220 B
YAML
15 lines
220 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: whoami
|
|
- run: python3 --version
|
|
- run: pip install pytest
|
|
- run: pytest tests/ -v --tb=short
|