feat: deserialize alternative format errors #1089
Workflow file for this run
This file contains 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: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: ~ | |
workflow_dispatch: ~ | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
javaversion: ["8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: "zulu" | |
java-version: "21" # Always use the latest stable JDK for building | |
cache: "maven" | |
- name: Install dependencies | |
run: make install | |
- name: Build Library | |
run: make build | |
- name: Set up Java ${{ matrix.javaversion }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "zulu" | |
java-version: ${{ matrix.javaversion }} | |
- name: Run test with Java ${{ matrix.javaversion }} | |
run: EASYPOST_TEST_API_KEY=123 EASYPOST_PROD_API_KEY=123 make test-ci | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: "zulu" | |
java-version: "21" # Always use the latest stable JDK for building | |
cache: "maven" | |
- name: Install dependencies | |
run: make install | |
- name: Test coverage | |
run: EASYPOST_TEST_API_KEY=123 EASYPOST_PROD_API_KEY=123 make coverage | |
- name: Load Rust cache | |
if: github.ref == 'refs/heads/master' | |
uses: Swatinem/rust-cache@v2 | |
- name: Install grcov | |
if: github.ref == 'refs/heads/master' | |
run: cargo install grcov --version 0.8.13 | |
- name: Convert coverage report | |
if: github.ref == 'refs/heads/master' | |
run: grcov target/site/jacoco/jacoco.xml --source-dir ./ --ignore "target/*" > coverage.lcov | |
- name: Coveralls | |
if: github.ref == 'refs/heads/master' | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: "./coverage.lcov" | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: "zulu" | |
java-version: "21" # Always use the latest stable JDK for building | |
cache: "maven" | |
- name: Install checkstyle and style guide | |
run: make install-checkstyle | |
- name: Lint | |
run: make lint | |
- name: Upload Test results | |
uses: actions/upload-artifact@master | |
with: | |
name: DependencyCheck report | |
path: ${{github.workspace}}/target/dependency-check-report.html | |
docs: | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: "zulu" | |
java-version: "21" # Always use the latest stable JDK for building | |
cache: "maven" | |
- name: Install Dependencies | |
run: make install | |
- name: Generate Docs | |
run: make docs | |
- name: Deploy docs | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs |