j-l-s has launched CI process on 8/merge #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration process | |
run-name: ${{ github.actor }} has launched CI process on ${{ github.ref_name }} | |
on: | |
push: | |
branches: | |
- "main" | |
- "develop" | |
pull_request: | |
branches: | |
- "main" | |
- "develop" | |
jobs: | |
Continuous-Integration-Actions: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout of head | |
id: ci-maven-build-checkout | |
uses: actions/checkout@v4 | |
- name: maven build | |
id: ci-maven-build | |
run: | | |
mamba env update -f conda-env/corese-core.yaml | |
conda activate corese-core | |
mvn clean package | |
shell: bash -l {0} | |
- name: Final Step | |
id: ci-final-step | |
run: | | |
echo "This job's status is ${{ job.status }}." | |
shell: bash -l {0} |