Skip to content

Commit

Permalink
feat: Testcases, cargo test, refactoring, improved Cargo.toml par…
Browse files Browse the repository at this point in the history
…sing, Windows fixes, Java modules and better docs. (#19)
  • Loading branch information
amunra authored Mar 3, 2023
1 parent 3c321a9 commit 69d1cfa
Show file tree
Hide file tree
Showing 32 changed files with 2,187 additions and 750 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ jobs:
cache: 'maven'

- name: Build with Maven
run: mvn package
run: mvn package -DskipTests=true

- name: Runnig the example
- name: Running tests
run: mvn test

- name: Running the example
run: java -cp "./rust-maven-example/target/rust-maven-example-1.0.0-SNAPSHOT.jar${{ matrix.path-sep }}./jar-jni/target/jar-jni-1.0.0-SNAPSHOT.jar" io.questdb.example.rust.Main

2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"java.compile.nullAnalysis.mode": "automatic",
"java.configuration.updateBuildConfiguration": "interactive"
}
Loading

0 comments on commit 69d1cfa

Please sign in to comment.