File tree Expand file tree Collapse file tree 2 files changed +36
-3
lines changed
Expand file tree Collapse file tree 2 files changed +36
-3
lines changed Original file line number Diff line number Diff line change 1+ name : trepan3k (ubuntu full)
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ python-version : ['3.12']
15+ steps :
16+ - uses : actions/checkout@v4
17+ - name : Set up Python ${{ matrix.python-version }}
18+ uses : actions/setup-python@v5
19+ with :
20+ python-version : ${{ matrix.python-version }}
21+ - name : Install dependencies
22+ run : |
23+ python -m pip install --upgrade pip
24+ # Until the next xdis release
25+ # pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
26+ # Until the next pytracer release
27+ # pip install git+https://github.com/rocky/pytracer#egg=tracer
28+ # Until the next pyficache release
29+ # pip install git+https://github.com/rocky/python-filecache#egg=pyficache
30+ pip install -e .[dev,full]
31+ - name : Test trepan3k
32+ run : |
33+ make check
Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ jobs:
2222 run : |
2323 python -m pip install --upgrade pip
2424 # Until the next xdis release
25- pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
25+ # pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
2626 # Until the next pytracer release
27- pip install git+https://github.com/rocky/pytracer#egg=tracer
27+ # pip install git+https://github.com/rocky/pytracer#egg=tracer
2828 # Until the next pyficache release
29- pip install git+https://github.com/rocky/python-filecache#egg=pyficache
29+ # pip install git+https://github.com/rocky/python-filecache#egg=pyficache
3030 pip install -e .[dev]
3131 - name : Test trepan3k
3232 run : |
You can’t perform that action at this time.
0 commit comments