Skip to content

Fix URLs.

Fix URLs. #78

name: main.linux.temurin.lts
on:
push:
branches: [ develop, feature/*, release/* ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: JDK
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
- name: Build
run: ./.github/workflows/run-with-xvfb.sh mvn --errors clean verify site
- name: Upload video
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: test-video
path: test-suite.mkv
- name: Upload test logs
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: test-logs
path: ./com.io7m.digal.tests/target/surefire-reports
- name: Upload test images
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: test-images
path: ./com.io7m.digal.tests/testCSS.png
- name: Coverage
uses: codecov/codecov-action@v1
with:
file: com.io7m.digal.tests/target/site/jacoco-aggregate/jacoco.xml