FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
scyjava/.github/workflows/build.yml at main · scijava/scyjava · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
scijava
/
scyjava
Public
Notifications
You must be signed in to change notification settings
Fork
16
Star
55
Code
Issues
16
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
scyjava
/
.github
/
workflows
/
build.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
62 lines (54 loc) · 1.21 KB
Breadcrumbs
scyjava
/
.github
/
workflows
/
build.yml
Copy path
File metadata and controls
62 lines (54 loc) · 1.21 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
53
54
55
56
57
58
59
60
61
62
name
:
build
on
:
push
:
branches
:
-
main
tags
:
-
"
*-[0-9]+.*
"
pull_request
:
branches
:
-
main
jobs
:
build
:
name
:
test ${{matrix.os}} - ${{matrix.python-version}} - ${{matrix.java-version}}
runs-on
:
${{ matrix.os }}
strategy
:
matrix
:
os
:
[
ubuntu-latest,
windows-latest,
macos-latest
]
python-version
:
[
'
3.10
'
,
'
3.14
'
]
java-version
:
['11']
include
:
#
one test without java to test cjdk fallback
-
os
:
ubuntu-latest
python-version
:
'
3.10
'
java-version
:
'
'
steps
:
-
uses
:
actions/checkout@v4
-
uses
:
actions/setup-python@v5
with
:
python-version
:
${{matrix.python-version}}
-
uses
:
actions/setup-java@v4
if
:
matrix.java-version != ''
with
:
java-version
:
${{matrix.java-version}}
distribution
:
'
zulu
'
cache
:
'
maven
'
-
name
:
Set up uv
run
:
|
python -m pip install --upgrade pip
python -m pip install uv
-
name
:
Run tests
shell
:
bash
run
:
|
bin/test.sh
-
name
:
Lint code
shell
:
bash
run
:
|
bin/lint.sh
Back
|
FazBrowse Home
|
New Git URL