-
Notifications
You must be signed in to change notification settings - Fork 6
39 lines (36 loc) · 1.09 KB
/
dev.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Dev CI
on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]
workflow_dispatch:
jobs:
environment-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: install dependencies
run: |
pip install networkx[default]
pip install lark
- name: test hello.py
run: python tests/scripts/hello.py
- name: test dep.py
run: python tests/scripts/dep.py
parser-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: install dependencies
run: |
pip install networkx[default]
pip install lark
- name: test parsing.py
run: PYTHONPATH="./" python ./tests/scripts/parsing.py