We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bbea26 commit 15261dcCopy full SHA for 15261dc
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+name: CI
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
11
+ - name: Set up Python
12
+ uses: actions/setup-python@v4
13
+ with:
14
+ python-version: "3.9"
15
16
+ - name: Install dependencies
17
+ run: |
18
+ python -m pip install --upgrade pip
19
+ pip install -r requirements.txt
20
+ pip install -r requirements-dev.txt
21
22
+ - name: Run tests
23
+ run: pytest
.gitignore
@@ -173,3 +173,4 @@ cython_debug/
173
# Custom
174
triton/
175
notebooks/
176
+pypi.txt
0 commit comments