Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

ci(github): Generate the MkDocs website #8

ci(github): Generate the MkDocs website

ci(github): Generate the MkDocs website #8

Workflow file for this run

name: CI
# Run this workflow every time a new commit pushed to your repository
on: push
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: ./gradlew build
- name: Upload Unit Test Results
if: always()
uses: actions/upload-artifact@v2
with:
name: tests-results # Name artifact for storage in cache
path: |
**/build/test-results/**/*.xml
publish-test-results:
name: Publish tests results
runs-on: ubuntu-latest
needs: build-and-test
# the build-and-test job might be skipped, we don't need to run this job then
if: success() || failure()
permissions:
checks: write
pull-requests: write
steps:
- name: Download Artifacts
uses: actions/download-artifact@v2
with:
name: tests-results # Name of artifact in cache
path: tests-results/
- name: Publish Unit Test Results
uses: docker://ghcr.io/enricomi/publish-unit-test-result-action:v1
if: always()
with:
github_token: ${{ github.token }}
files: tests-results/**/*.xml