mirror of
https://github.com/blackboxprogramming/simulation-theory.git
synced 2026-03-17 06:57:15 -05:00
13 lines
297 B
YAML
13 lines
297 B
YAML
name: CI
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- run: pip install -r requirements.txt || true
|
|
- run: python -m pytest || true
|