Skip to content

cleaup github workflows #3

cleaup github workflows

cleaup github workflows #3

Workflow file for this run

name: Build
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '11'
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
export DISPLAY=:99
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 &
./gradlew build
- name: Archive test report
uses: actions/upload-artifact@v3
if: always()
with:
name: test-report
path: |
*/build/test-results
*/build/reports