Skip to content
This repository was archived by the owner on Mar 1, 2026. It is now read-only.

Commit 660547d

Browse files
committed
Added pylint, testing runs
1 parent 4d2dfe5 commit 660547d

5 files changed

Lines changed: 675 additions & 6 deletions

File tree

.github/workflows/test.yml

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push
55

66
jobs:
7-
dialyzer:
7+
elixir-dialyzer:
88
if: contains(github.ref, 'elixir/')
99
name: Dialyzer
1010
runs-on: ubuntu-latest
@@ -34,7 +34,7 @@ jobs:
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

0 commit comments

Comments
 (0)