You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To compile the project and generate a JAR file, run the following command in the project's root directory:
@@ -18,8 +51,7 @@ To compile the project and generate a JAR file, run the following command in the
18
51
19
52
This command compiles the source code and packages it into a .jar files located in the ``build/libs`` directory.
20
53
21
-
22
-
## Running Scala Tests
54
+
## Run Scala Tests
23
55
24
56
This section describes how to run Scala tests for the Spark Dialect Extension.
25
57
@@ -48,7 +80,7 @@ After completing the tests, you can stop the Docker containers with:
48
80
docker-compose -f docker-compose.test.yml down
49
81
```
50
82
51
-
## Code Formatting and Linting
83
+
## Format and lint the code
52
84
53
85
### Using Scalafmt to Format Code
54
86
@@ -65,9 +97,24 @@ To lint and refactor the code, run Scalafix using the following command:
65
97
```
66
98
This command checks the code against various rules specified in the ```.scalafix.conf``` file and applies fixes where possible.
67
99
100
+
## Create a pull request
101
+
102
+
Commit your changes:
103
+
104
+
```bash
105
+
git commit -m "Commit message"
106
+
git push
107
+
```
108
+
109
+
Then open Github interface and [create pull request](https://docs.github.com/en/get-started/quickstart/contributing-to-projects#making-a-pull-request).
110
+
Please follow guide from PR body template.
111
+
112
+
After pull request is created, it get a corresponding number, e.g. 123
113
+
(`pr_number`).
68
114
69
-
## Release process
115
+
## Release a new package version
70
116
117
+
Note: this is only for repo maintainers
71
118
72
119
1. Checkout to ``develop`` branch and update it to the actual state
0 commit comments