Skip to content

Commit

Permalink
Merge branch 'main' into will/maven39
Browse files Browse the repository at this point in the history
  • Loading branch information
willmostly authored Sep 18, 2023
2 parents ec4f981 + d2abb53 commit 7d5758f
Show file tree
Hide file tree
Showing 17 changed files with 977 additions and 688 deletions.
14 changes: 14 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Contributing

## Contributor License Agreement ("CLA")

In order to accept your pull request, we need you to [submit a CLA](https://github.com/trinodb/cla).

## License

By contributing, you agree that your contributions will be licensed under the
[Apache License Version 2.0 (APLv2)](../LICENSE).

## Contribution process

See the suggested [process for contributions](https://trino.io/development/process.html).
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: ci

on:
push:
branches:
- main
pull_request:
branches:
- main

defaults:
run:
shell: bash --noprofile --norc -euo pipefail {0}

env:
# Use Maven wrapper from repo with Maven version and other configs
MAVEN: ./mvnw -B

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Maven
run: $MAVEN clean verify
Loading

0 comments on commit 7d5758f

Please sign in to comment.