FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-lsp-server/.github/workflows/test-mac.yml at develop · python-lsp/python-lsp-server · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-lsp
/
python-lsp-server
Public
Notifications
You must be signed in to change notification settings
Fork
248
Star
2.6k
Code
Issues
150
Pull requests
22
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-lsp-server
/
.github
/
workflows
/
test-mac.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
52 lines (48 loc) · 1.4 KB
Breadcrumbs
python-lsp-server
/
.github
/
workflows
/
test-mac.yml
Copy path
File metadata and controls
52 lines (48 loc) · 1.4 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
51
52
name
:
Mac tests
on
:
push
:
branches
:
-
develop
pull_request
:
branches
:
-
'
*
'
concurrency
:
group
:
test-mac-${{ github.ref }}
cancel-in-progress
:
true
jobs
:
build
:
name
:
Mac Py${{ matrix.PYTHON_VERSION }}
runs-on
:
macos-14
env
:
CI
:
'
true
'
OS
:
'
macos
'
PYTHON_VERSION
:
${{ matrix.PYTHON_VERSION }}
strategy
:
fail-fast
:
false
matrix
:
PYTHON_VERSION
:
['3.14', '3.12', '3.11']
timeout-minutes
:
10
steps
:
-
uses
:
actions/cache@v6
with
:
path
:
~/Library/Caches/pip
key
:
${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('pyproject.toml') }}
restore-keys
:
${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-
-
uses
:
actions/checkout@v7
-
uses
:
actions/setup-python@v6
with
:
python-version
:
${{ matrix.PYTHON_VERSION }}
architecture
:
'
x64
'
-
name
:
Create Jedi environment for testing
run
:
|
python3 -m venv /tmp/pyenv
/tmp/pyenv/bin/python -m pip install loghub
-
run
:
python -m pip install --upgrade pip setuptools
-
run
:
pip install -e .[all,test]
-
name
:
Show test environment
run
:
pip list
-
run
:
pytest --color=yes -v test/
#
Enable this if SSH debugging is required
#
- name: Setup tmate session
#
uses: mxschmitt/action-tmate@v3
#
if: ${{ failure() }}
Back
|
FazBrowse Home
|
New Git URL