FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
feast/.github/workflows/pr_duckdb_integration_tests.yml at master · lyndonbauto/feast · GitHub
lyndonbauto
/
feast
Public
forked from
feast-dev/feast
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
feast
/
.github
/
workflows
/
pr_duckdb_integration_tests.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
35 lines (32 loc) · 1.29 KB
Breadcrumbs
feast
/
.github
/
workflows
/
pr_duckdb_integration_tests.yml
Copy path
File metadata and controls
35 lines (32 loc) · 1.29 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
name
:
pr-duckdb-integration-tests
on
:
pull_request
:
types
:
-
opened
-
synchronize
-
labeled
concurrency
:
group
:
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress
:
true
jobs
:
integration-test-duckdb-offline
:
if
:
((github.event.action == 'labeled' && (github.event.label.name == 'approved' || github.event.label.name == 'lgtm' || github.event.label.name == 'ok-to-test')) ||
(github.event.action != 'labeled' && (contains(github.event.pull_request.labels.*.name, 'ok-to-test') || contains(github.event.pull_request.labels.*.name, 'approved') || contains(github.event.pull_request.labels.*.name, 'lgtm')))) &&
github.event.pull_request.base.repo.full_name == 'feast-dev/feast'
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v4
with
:
repository
:
${{ github.event.repository.full_name }}
ref
:
${{ github.ref }}
token
:
${{ secrets.GITHUB_TOKEN }}
submodules
:
recursive
-
name
:
Setup pixi
uses
:
prefix-dev/setup-pixi@v0.10.0
with
:
pixi-version
:
v0.75.0
environments
:
duckdb-tests
cache
:
true
-
name
:
Run DuckDB offline store integration tests
run
:
make test-python-universal-duckdb-offline
Back
|
FazBrowse Home
|
New Git URL