Skip to content

weekly

weekly #45

Workflow file for this run

name: weekly
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 5 * * SUN'
workflow_dispatch:
jobs:
build:
runs-on: [ ubuntu-22.04 ]
steps:
- uses: actions/[email protected]
- name: set up JDK 17
uses: actions/[email protected]
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Unit test report
uses: asadmansr/[email protected]
if: ${{ always() }}