Skip to content

Merge pull request #402 from Tinkoff/dependabot/pip/site.documentatio… #99

Merge pull request #402 from Tinkoff/dependabot/pip/site.documentatio…

Merge pull request #402 from Tinkoff/dependabot/pip/site.documentatio… #99

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: gradle-ci
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: nanasess/setup-chromedriver@master
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Cache SonarCloud packages
uses: actions/cache@v1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Test with Gradle
run: |
export DISPLAY=:99
chromedriver --url-base=/wd/hub &
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional
./gradlew clean check
- name: SonarCloud Scan
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
./gradlew sonarqube -x build --info
- name: Generate javadoc
run: |
./gradlew aggregatedJavadocs javadoc
- name: Create site
run: |
pip3 install -r ./site.documentation/requirements.txt
sphinx-build ./site.documentation/source ./neptune.documentation/site
- name: Deploy documents
uses: JamesIves/github-pages-deploy-action@v4.3.3
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
clean: true
folder: neptune.documentation