Support running on ARM64 machines #160
Workflow file for this run
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
on: | |
push: | |
branches: [ main, 'v*' ] | |
pull_request: | |
branches: [ '*' ] | |
workflow_dispatch: | |
jobs: | |
test: | |
name: "Test Download" | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Check out repository' | |
uses: actions/checkout@v4 | |
- name: 'Compile and run test' | |
shell: bash | |
run: | | |
PATH=$JAVA_HOME_17_X64/bin:$PATH | |
javac -d classes src/Download.java test/Test.java | |
java -cp classes Test | |
validate: | |
name: "Validate Values" | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Check out repository' | |
uses: actions/checkout@v4 | |
- name: 'Run validation program' | |
shell: bash | |
run: | | |
PATH=$JAVA_HOME_17_X64/bin:$PATH | |
java test/Validate.java |