[#163] Improved docs #170
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: Java Build | |
on: [ push ] | |
jobs: | |
build: | |
name: Maven Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: temurin | |
cache: maven | |
- uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
- run: arm-none-eabi-gcc --version | |
- run: sudo apt-get update | |
- run: sudo apt-get install gcc-multilib g++-multilib | |
- run: gcc --version | |
- name: Build with Maven | |
run: mvn -B install --file pom.xml -Pbuild-arm | |
- name: Upload Java code coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
# file: jacoco.xml #optional | |
# name: codecov-umbrella #optional | |
# yml: ./codecov.yml #optional | |
# fail_ci_if_error: true #optional (default = false) |