Skip to content

Commit

Permalink
updating github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
thavelock committed Jul 24, 2024
1 parent f9b9c10 commit ce8a8c7
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/open-source-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,26 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@master

- name: Set up JDK 17
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9'

- name: Install Python Dependencies
run: pip install -r sample-python/requirements.txt

- name: Setup JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
architecture: x64
cache: 'maven'

- name: Run the Maven verify phase
- name: Maven verify
run: mvn --batch-mode --update-snapshots verify

- name: Install mvn dependencies
- name: Install Maven dependencies
run: mvn clean install

- uses: snyk/actions/setup@master
Expand Down

0 comments on commit ce8a8c7

Please sign in to comment.