Skip to content

Implementing GitHub Actions Pipeline #15

Implementing GitHub Actions Pipeline

Implementing GitHub Actions Pipeline #15

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 }}
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Show current branch
run: |
git rev-parse --abbrev-ref HEAD
build:
runs-on: ubuntu-latest
container:
image: morpheus99/corretto-gradle
options: --user root
steps:
# Install Gradle 8.10
- name: Checking Gradle & Java
run:
java -version && gradle --version