Skip to content

Commit

Permalink
added actions/checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
j-l-s committed Sep 11, 2024
1 parent fb26422 commit df5606a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,20 @@ 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 install -DskipTests
shell: bash -l {0}

- run: echo "This job's status is ${{ job.status }}."
- name: Final Step
id: ci-final-step
run: |
echo "This job's status is ${{ job.status }}."
shell: bash -l {0}

0 comments on commit df5606a

Please sign in to comment.