Skip to content

Commit a203f53

Browse files
authored
Introdcuing .gitpod.yml to kedro-plugins (kedro-org#185)
Currently opening gitpod will installed a Python 3.11 which breaks everything because we don't support it set. This PR introduce a simple .gitpod.yml to get it started.
1 parent d69dbb5 commit a203f53

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.gitpod.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart
2+
image: gitpod/workspace-python-3.10:2023-04-20-16-32-37
3+
4+
5+
tasks:
6+
# We want packages installed during the pre-build init steps to go to /workspace
7+
# rather than ~ so that they are persisted. Gitpod sets PIP_USER=yes to ensure this,
8+
# but pre-commit requires PIP_USER=no. Hence we set PIP_USER=no and use
9+
# pip install --user to install to /workspace.
10+
- name: kedro-plugins
11+
before: |
12+
echo PIP_USER=no >> ~/.bashrc && export PIP_USER=no
13+
init: |
14+
make sign-off
15+
command: |
16+
pre-commit install --install-hooks
17+
clear
18+
19+
20+
github:
21+
prebuilds:
22+
# enable for the master/default branch (defaults to true)
23+
master: true
24+
# enable for all branches in this repo (defaults to false)
25+
branches: true
26+
# enable for pull requests coming from this repo (defaults to true)
27+
pullRequests: true
28+
# enable for pull requests coming from forks (defaults to false)
29+
pullRequestsFromForks: true
30+
# add a "Review in Gitpod" button as a comment to pull requests (defaults to true)
31+
addComment: false
32+
# add a "Review in Gitpod" button to pull requests (defaults to false)
33+
addBadge: true

0 commit comments

Comments
 (0)