Files
agnos-builder/.github/workflows/tests.yaml
T
Adeeb Shihadeh 18f4bd76c0 little bit of ci (#96)
* more pre-commit

* run in ci

* fix violations

* cleanup
2022-10-22 18:07:59 -07:00

18 lines
321 B
YAML

name: tests
on:
push:
pull_request:
jobs:
precommit:
name: pre-commit
runs-on: ubuntu-20.04
timeout-minutes: 8
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- run: 'pip install pre-commit'
- run: 'pre-commit run --all'