Skip to content

Commit

Permalink
Create Setup Java JDK
Browse files Browse the repository at this point in the history
#SAMkenXEcosystem PMUXSystemAPIs updates with DAVID/MORAL
Project - > https://turnkey-triumph-326606-cloudstorage.googleapis.com/dev/samkenx
main email : [email protected]

Signed-off-by: Sam Ken  <[email protected]>
  • Loading branch information
samkenxstream authored Jul 20, 2023
1 parent 68a71b5 commit c58f6a3
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions .github/workflows/python-package-conda.yml/Setup Java JDK
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: Python Package using Conda

on: [push]

jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
conda env update --file environment.yml --name base
- name: Lint with flake8
run: |
conda install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
conda install pytest
pytest
- name: Setup Java JDK

uses: actions/[email protected]

with:

# The Java version to make available on the path. Takes a whole or semver Java version, or 1.x syntax (e.g. 1.8 => Java 8.x). Early access versions can be specified in the form of e.g. 14-ea, 14.0.0-ea, or 14.0.0-ea.28

java-version:

# The package type (jre, jdk, jdk+fx)

java-package: # optional, default is jdk

# The architecture (x86, x64) of the package.

architecture: # optional, default is x64

# Path to where the compressed JDK is located. The path could be in your source repository or a local path on the agent.

jdkFile: # optional

# ID of the distributionManagement repository in the pom.xml file. Default is `github`

server-id: # optional, default is github

# Environment variable name for the username for authentication to the Apache Maven repository. Default is $GITHUB_ACTOR

server-username: # optional, default is GITHUB_ACTOR

# Environment variable name for password or token for authentication to the Apache Maven repository. Default is $GITHUB_TOKEN

server-password: # optional, default is GITHUB_TOKEN

# Path to where the settings.xml file will be written. Default is ~/.m2.

settings-path: # optional

# GPG private key to import. Default is empty string.

gpg-private-key: # optional

# Environment variable name for the GPG private key passphrase. Default is $GPG_PASSPHRASE.

gpg-passphrase: # optional

0 comments on commit c58f6a3

Please sign in to comment.