Ability to run all tests in a local container; can also run a webserv… #161
This file contains hidden or 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: Linux x64 | |
| on: | |
| - push | |
| - workflow_dispatch | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 40 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: uraimo/run-on-arch-action@v2 | |
| with: | |
| arch: none | |
| distro: none | |
| base_image: amd64/ubuntu:18.04 | |
| shell: /bin/sh | |
| run: | | |
| apt update | |
| apt -y install curl | |
| sh fzpkg/scripts/install-java.sh | |
| /usr/lib/jvm/jdk-current/bin/java -version |