Add basic CI

This commit is contained in:
Stéphane Bidoul 2021-10-17 15:44:23 +02:00
parent 6020c9b25b
commit c2c2e4bac9
No known key found for this signature in database
GPG key ID: BCAB2555446B5B92

14
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,14 @@
name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: pre-commit/action@v2.0.2