summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMartin Bielik <martin.bielik@instea.sk>2024-12-16 20:15:25 +0100
committerMartin Bielik <martin.bielik@instea.sk>2024-12-16 20:15:25 +0100
commitb81a3c7cb4fb15295262e4e6a2896e5bc88c51de (patch)
treeb6b26248e3342f6cdeb50effd4130b3d45bbe627 /.github
parent082eb061b9233719a4c763905008a17d636b468f (diff)
downloadvim-ai-b81a3c7cb4fb15295262e4e6a2896e5bc88c51de.tar.gz
added ci pipeline
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
new file mode 100644
index 0000000..9fa10c9
--- /dev/null
+++ b/.github/workflows/tests.yml
@@ -0,0 +1,17 @@
+name: Tests
+on: [push]
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - name: Set up Python
+ uses: actions/setup-python@v5
+ with:
+ python-version: '3.x'
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install pytest
+ - name: Run tests
+ run: pytest