Millit commited on
Commit
6e0fc5b
·
verified ·
1 Parent(s): cfae8ad

Upload test.yml

Browse files
Files changed (1) hide show
  1. .github/workflows/test.yml +23 -0
.github/workflows/test.yml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Test LLM Council
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - uses: actions/setup-python@v4
11
+ with:
12
+ python-version: '3.10'
13
+ - name: Install dependencies
14
+ run: |
15
+ pip install -r requirements.txt
16
+ - name: Lint
17
+ run: |
18
+ pip install ruff
19
+ ruff check .
20
+ - name: Type check
21
+ run: |
22
+ pip install mypy
23
+ mypy council.py --ignore-missing-imports