2021-10-21 18:18:56 +00:00
|
|
|
name: uncompyle6 (ubuntu)
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-10-21 19:37:27 +00:00
|
|
|
python-version: [3.7, 3.8]
|
2021-10-21 18:18:56 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
2021-10-21 19:37:27 +00:00
|
|
|
# Until the next xdis release
|
|
|
|
pip install git+git://github.com/rocky/python-xdis.git#egg=xdis
|
2021-10-21 18:18:56 +00:00
|
|
|
pip install -e .
|
2021-10-21 19:37:27 +00:00
|
|
|
pip install -r requirements-dev.txt
|
|
|
|
- name: Test uncompyle6
|
2021-10-21 18:18:56 +00:00
|
|
|
run: |
|
|
|
|
make check
|