We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2eb7cd commit f709586Copy full SHA for f709586
.github/workflows/python.yaml
@@ -22,11 +22,28 @@ jobs:
22
- name: MyPy
23
run: mypy yellowstone test
24
25
+ test:
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - name: Checkout
29
+ uses: actions/checkout@v4
30
+
31
+ - name: Set up Python
32
+ uses: actions/setup-python@v4
33
+ with:
34
+ python-version: 3.11
35
36
+ - name: Install dependencies
37
+ run: pip install -r requirements.txt && pip install -r requirements.dev.txt
38
39
+ - name: Run unit tests
40
+ run: python -m unittest
41
42
lint:
43
runs-on: ubuntu-latest
44
steps:
45
- name: Checkout
- uses: actions/checkout@v3
46
47
48
- name: Ruff
49
uses: chartboost/ruff-action@v1
0 commit comments