{"id":15722227,"url":"https://github.com/arturo-lang/arturo-action","last_synced_at":"2026-01-07T11:17:27.965Z","repository":{"id":65158956,"uuid":"355603645","full_name":"arturo-lang/arturo-action","owner":"arturo-lang","description":"GitHub action to setup Arturo","archived":false,"fork":false,"pushed_at":"2024-10-09T09:30:50.000Z","size":70,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-10-29T20:05:06.709Z","etag":null,"topics":["arturo","github-action","github-actions-ci"],"latest_commit_sha":null,"homepage":"http://arturo-lang.io","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arturo-lang.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["drkameleon"]}},"created_at":"2021-04-07T15:57:13.000Z","updated_at":"2024-10-09T09:30:54.000Z","dependencies_parsed_at":"2024-02-06T07:00:52.608Z","dependency_job_id":"bac46c2d-6654-4904-bb54-ef4511842a46","html_url":"https://github.com/arturo-lang/arturo-action","commit_stats":{"total_commits":129,"total_committers":2,"mean_commits":64.5,"dds":0.0852713178294574,"last_synced_commit":"e882720e6a63e4b6f47a34cdb13b40478993540e"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arturo-lang%2Farturo-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arturo-lang%2Farturo-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arturo-lang%2Farturo-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arturo-lang%2Farturo-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arturo-lang","download_url":"https://codeload.github.com/arturo-lang/arturo-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237267922,"owners_count":19282308,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arturo","github-action","github-actions-ci"],"created_at":"2024-10-03T22:05:27.237Z","updated_at":"2026-01-07T11:17:27.959Z","avatar_url":"https://github.com/arturo-lang.png","language":null,"funding_links":["https://github.com/sponsors/drkameleon"],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n\u003ch1\u003eArturo @ction\u003c/h1\u003e \n\n### Install \u0026 use Arturo on any GitHub runner\n\n![License](https://img.shields.io/github/license/arturo-lang/arturo-action?style=for-the-badge) [![Build Status](https://img.shields.io/github/actions/workflow/status/arturo-lang/arturo-action/matrix.yml?branch=main\u0026style=for-the-badge)](https://github.com/arturo-lang/arturo-action/actions) \n\u003c/div\u003e\n\n---\n\n\u003c!--ts--\u003e\n   * [Quick Start](#quick-start)\n   * [More Examples](#more-examples)\n      * [Native builds](#native-builds)\n      * [Cross-platform matrix](#cross-platform-matrix)\n      * [Compilation from source](#compilation-from-source)\n   * [Options](#options)\n   * [Supported Platforms](#supported-platforms)\n   * [License](#license)\n\u003c!--te--\u003e\n\n---\n\n## Quick Start\n\n```yaml\n- name: Install Arturo\n  uses: arturo-lang/arturo-action@v2\n  with: \n    token: ${{ secrets.GITHUB_TOKEN }}\n```\n\n\u003e [!TIP]\n\u003e If all you need is to have Arturo available as part of your workflow, chances are all you'll have to do in most cases is to include the step above (^), and the action will auto-detect your runner/OS, fetch the appropriate version, etc. No configuration needed at all! 😉\n\n## More Examples\n\n### Native builds\n\n```yaml\njobs:\n  build:\n    runs-on: macos-latest\n    steps:\n      - uses: actions/checkout@v4\n      \n      - name: Install Arturo\n        uses: arturo-lang/arturo-action@v2\n        with: \n          token: ${{ secrets.GITHUB_TOKEN }}\n\n      - name: Run script\n        run: arturo script.art\n```\n\n\u003e [!CAUTION]\n\u003e Pre-built MINI binaries on `ubuntu-22.04-arm` (ARM64) don't work well!\n\u003e\n\u003e In general, it's recommended to use the latest runners (ubuntu-latest, macos-latest, windows-latest) for best compatibility.\n\n### Cross-platform matrix\n\n```yaml\njobs:\n  test:\n    runs-on: ${{ \n      (matrix.os == 'windows')                         \u0026\u0026 'windows-latest' || \n      (matrix.os == 'macos' \u0026\u0026 matrix.arch == 'arm64') \u0026\u0026 'macos-latest'   || \n      (matrix.os == 'macos')                           \u0026\u0026 'macOS-15-intel' || \n                                                          'ubuntu-latest'  }}\n    strategy:\n      matrix:\n        include: \n          - {os: linux,   arch: amd64, mode: full}\n          - {os: linux,   arch: arm64, mode: mini}\n          - {os: windows, arch: amd64, mode: full}\n          - {os: macos,   arch: amd64, mode: full}\n          - {os: macos,   arch: arm64, mode: full}\n          - {os: freebsd, arch: amd64, mode: full}\n          - {os: web}\n\n    defaults:\n      run:\n        shell: ${{ \n          (matrix.os == 'freebsd') \u0026\u0026 'freebsd {0}' ||\n          (matrix.os == 'windows') \u0026\u0026 'msys2 {0}'   || \n                                      'bash'        }}\n\n    steps:\n      - uses: actions/checkout@v4\n      \n      - name: Install Arturo\n        uses: arturo-lang/arturo-action@v2\n        with: \n          token: ${{ secrets.GITHUB_TOKEN }}\n          os: ${{ matrix.os }}\n          arch: ${{ matrix.arch }}\n          mode: ${{ matrix.mode }}\n      \n      - name: Test\n        run: arturo tests/test.art\n```\n\n### Compilation from source\n\n```yaml\n- name: Build Arturo from source\n  uses: arturo-lang/arturo-action@v2\n  with: \n    token: ${{ secrets.GITHUB_TOKEN }}\n    do: compile\n    src: main              # or specific branch/tag/commit\n    mode: full\n    create_artifact: true\n    artifact_version: \"0.9.85\"\n```\n\n## Options\n\n| Option | Values | Default | Notes |\n|--------|--------|---------|-------|\n| `token` | GitHub token | *required* | Use `${{ secrets.GITHUB_TOKEN }}` |\n| `do` | `fetch`, `compile` | `fetch` | Fetch nightly or compile from source |\n| `from` | `nightly`, `release` | `nightly` | Source repository for fetch mode |\n| `mode` | `mini`, `full` | `full` | Build configuration |\n| `os` | `linux`, `windows`, `macos`, `freebsd`, `web` | auto-detect | Target platform |\n| `arch` | `amd64`, `arm64`, `js` | auto-detect | Target architecture |\n| `support` | `standard`, `legacy` | auto-detect | For older Ubuntu systems (webkit 4.0 vs 4.1) |\n| `src` | branch/tag/commit | latest | Specific Arturo version (compile mode) |\n| `metadata` | string | - | Build metadata (compile mode) |\n| `create_artifact` | `true`, `false` | `false` | Upload build artifact |\n| `artifact_version` | string | - | Version string for artifact naming (compile mode) |\n| `artifacts_only` | `true`, `false` | `false` | Skip setup, download \u0026 re-upload artifacts only (fetch mode) |\n\n## Supported Platforms\n\n| OS | Architecture | Mode | Runner |\n|----|--------------|------|--------|\n| Linux | amd64, arm64 | mini, full | ubuntu-latest, ubuntu-22.04, ubuntu-24.04-arm, ubuntu-24.04 |\n| Windows | amd64 | mini, full | windows-latest |\n| macOS | amd64, arm64 | mini, full | macOS-15-intel, macos-latest |\n| FreeBSD | amd64 | mini, full | ubuntu-latest (via VM) |\n| Web | js | mini | ubuntu-latest |\n\n\u003e [!NOTE] \n\u003e ### Legacy Support\n\u003e For older Ubuntu runners (\u003c 24.04), the action automatically detects and uses WebKit 4.0 instead of 4.1. You can also explicitly set `support: legacy` to force this behavior.\n\n---\n\n## License\n\nMIT License\n\nCopyright (c) 2019-2025 Yanis Zafirópulos (aka Dr.Kameleon)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farturo-lang%2Farturo-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farturo-lang%2Farturo-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farturo-lang%2Farturo-action/lists"}