Skip to content

Commit

Permalink
#43: fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
saneci committed Mar 21, 2024
1 parent 0ce7f0b commit f07cfc0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ on:
branches: [ master ]

jobs:
integration-tests:
runs-on: ubuntu-latest
steps:
- name: Check out the repository to the runner
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Run the Maven integration tests
run: mvn clean test
- run: echo "This job's status is ${{ job.status }}."
build:
needs: [integration-tests]
runs-on: ubuntu-latest
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Continuous Integration

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

Expand Down

0 comments on commit f07cfc0

Please sign in to comment.