-
-
Notifications
You must be signed in to change notification settings - Fork 165
50 lines (47 loc) · 1.25 KB
/
Copy pathubuntu.yml
File metadata and controls
50 lines (47 loc) · 1.25 KB
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
40
41
42
43
44
45
46
47
48
49
50
name: decompyle3 (ubuntu)
on:
push:
branches: [ master, python-3.7-to-3.10 ]
pull_request:
branches: [ master, python-3.7-to-3.10 ]
jobs:
build-master:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# Until the next xdis release
pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
pip install -e .
pip install -r requirements-dev.txt
- name: Test decompyle3
run: |
make check
build-37-to-310:
if: github.ref == 'refs/heads/python-3.7-to-3.10'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: python-3.7-to-3.10
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements-dev.txt
- name: Test decompyle3
run: |
make check