Merge pull request #149 from exercism-bot/org-wide-files/10701516276 #137
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: J / Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 | |
- name: Install J | |
run: | | |
wget https://www.jsoftware.com/download/j9.5/install/j9.5_linux64.tar.gz | |
tar -xvf j9.5_linux64.tar.gz | |
mv j9.5 /opt/j9.5 | |
rm -rf j9.5_linux64.tar.gz | |
echo "/opt/j9.5/bin" >> $GITHUB_PATH | |
- name: Verify all exercises | |
run: bin/verify-exercises.sh |