Bump tycho-version from 4.0.7 to 4.0.8 #213
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
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Set up JDK 21 ☕ | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@v5 | |
with: | |
maven-version: 3.9.6 | |
- name: Set up Display 📺 | |
if: ${{ runner.os == 'Linux' }} | |
run: | | |
sudo apt-get update --fix-missing; | |
sudo apt-get install mutter dbus-x11; | |
dbus-launch --auto-syntax > dbus-env; | |
source dbus-env; | |
mutter --no-x11 --headless --virtual-monitor 1920x1080 & | |
- name: Build with Maven 🏗️ | |
run: mvn -B clean verify |