Ignore security manager warnings for the time being for testing with … #1
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
name: Run Tests | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
# Check out the repository code | |
- name: Check out code | |
uses: actions/checkout@v3 | |
# Set up Java environment | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
# Navigate to the make/nashorn directory and run tests | |
- name: Run Tests | |
working-directory: make/nashorn | |
run: | | |
ant test |