This repository was archived by the owner on Mar 1, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 push
55
66jobs :
7- dialyzer :
7+ elixir- dialyzer :
88 if : contains(github.ref, 'elixir/')
99 name : Dialyzer
1010 runs-on : ubuntu-latest
3434 - name : Run Dialyzer
3535 run : mix dialyzer
3636
37- test- elixir :
37+ elixir-test :
3838 if : contains(github.ref, 'elixir/')
3939 name : Test Elixir
4040 runs-on : ubuntu-latest
@@ -76,15 +76,33 @@ jobs:
7676 - name : (Go) WK1 tests
7777 working-directory : w1
7878 run : go test -v
79- test-python :
79+ python-pylint :
80+ if : contains(github.ref, 'python/')
81+ name : Pylint
82+ runs-on : ubuntu-latest
83+ steps :
84+ - uses : actions/checkout@v4
85+ - uses : actions/setup-python@v5
86+ with :
87+ python-version : ' 3.13'
88+ - name : Set up virtualenv
89+ run : |
90+ python -m venv venv
91+ source venv/bin/activate
92+ pip install -r req_test.txt
93+ pip install pylint
94+ - name : (Python) Pylint
95+ run : pylint w1/
96+
97+ python-test :
8098 if : contains(github.ref, 'python/')
8199 name : Test Python
82100 runs-on : ubuntu-latest
83101 steps :
84102 - uses : actions/checkout@v4
85- - uses : actions/setup-python@v1
103+ - uses : actions/setup-python@v5
86104 with :
87- python-version : ' 3.11 '
105+ python-version : ' 3.13 '
88106 - name : (Python) tests
89107 run : python -m unittest -v */*_test.py
90108 - name : (Python) WK2 tests
You can’t perform that action at this time.
0 commit comments