Rewrote interpolation code, added Bezier functions #97
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Java CI (Main) | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: | | |
| !contains(github.event.head_commit.message, '[ci skip]') | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 5 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| cache: gradle | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build with Gradle | |
| uses: gradle/gradle-build-action@v3 | |
| with: | |
| arguments: build -x test --stacktrace | |
| - name: Publish to latvian.dev Maven | |
| uses: gradle/gradle-build-action@v3 | |
| env: | |
| MAVEN_URL: 'https://maven.latvian.dev/releases' | |
| MAVEN_USERNAME: 'lat' | |
| MAVEN_TOKEN: ${{ secrets.MAVEN_TOKEN }} | |
| with: | |
| arguments: publish --stacktrace |