Skip to content

Implementing GitHub Actions Pipeline #35

Implementing GitHub Actions Pipeline

Implementing GitHub Actions Pipeline #35

Workflow file for this run

# © 2024. TU Dortmund University,
# Institute of Energy Systems, Energy Efficiency and Energy Economics,
# Research group Distribution grid planning and operation
#
name: CI
on:
push:
branches:
- main
- dev
- 'feature/*'
- 'hotfix/*'
- 'release/*'
pull_request:
branches:
- main
- dev
jobs:
checkout:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
# Check if it's a pull request
ref: ${{ github.event.pull_request.head.ref || github.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
- name: Show current branch
run: |
git rev-parse --abbrev-ref HEAD
pwd
ls -la ${{ github.workspace }}
build:
needs: checkout
runs-on: ubuntu-latest
container:
image: morpheus99/corretto-gradle
options: --user root
volumes:
- type: bind

Check failure on line 45 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 45, Col: 11): A mapping was not expected
source: ${{ github.workspace }}
target: /simona
steps:
- name: Checking Gradle & Java
run:
java -version && gradle --version
- name: Verify Files in Container
run: |
pwd
ls -la /simona
- name: Building Project
working-directory: /simona
run: |
pwd
ls -la
gradle clean assemble
test:
needs: build
runs-on: ubuntu-latest
container:
image: morpheus99/corretto-gradle
options: --user root
steps:
- name: Checking Gradle & Java
run:
java -version && gradle --version
- name: Running tests
run:
gradle --refresh-dependencies spotlessCheck pmdMain pmdTest
- name: Generate JavaDoc
run: |
set +x
cd simona
./gradlew javadoc