clebreto is testing out GitHub Actions #10
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 }} is testing out GitHub Actions | |
on: [push] | |
jobs: | |
Explore-GitHub-Actions: | |
runs-on: self-hosted | |
steps: | |
- name: maven build | |
run: | | |
mamba env update -f conda-env/corese-core.yaml | |
conda activate corese-core | |
mvn clean install -DskipTests | |
shell: bash -l {0} | |
- run: echo "This job's status is ${{ job.status }}." |