Skip to content

OK, so I can deploy on AWS. But I need to modify the configs because … #111

OK, so I can deploy on AWS. But I need to modify the configs because …

OK, so I can deploy on AWS. But I need to modify the configs because … #111

name: Build Gradle project
on:
push:
jobs:
build-gradle-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v3
- name: Install packages
run: sudo apt-get install -y graphviz
- name: Setup Gradle
uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: '17'
cache: 'gradle'
- run: sh gradlew build
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}