Update install-arturo #490
Workflow file for this run
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: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install libmpfr6 libwebkit2gtk-4.1-0 libpcre3 | |
| - name: Install Arturo | |
| run: | | |
| curl -L -o arturo.zip https://github.com/arturo-lang/nightly/releases/download/2025-10-14/arturo-nightly.2025-10-13-amd64-linux-full.zip | |
| sudo unzip arturo.zip -d /usr/local/bin/ | |
| rm arturo.zip | |
| sudo chmod +x /usr/local/bin/arturo | |
| sudo ldconfig | |
| - name: Install Unitt testing framework | |
| run: arturo -p install unitt 3.0.0 | |
| - name: Verify all exercises | |
| run: bin/verify-exercises |