Reporting with MarkDown file and SVG bar charts #236
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: Test | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'corretto' | |
java-version: '11' | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@v4.5 | |
with: | |
maven-version: '3.9.1' | |
- name: Build | |
run: make install | |
- name: Install testing tools | |
run: | | |
make install-tools-testing | |
echo "PATH=$HOME/.eval-dev-quality/bin:$PATH" >> $GITHUB_ENV | |
- name: Lint Build | |
run: make lint-build-ci | |
- name: Test | |
run: make test |