{"id":7539856,"url":"https://github.com/Panquesito7/setup-jule","last_synced_at":"2025-05-09T23:32:35.228Z","repository":{"id":185189921,"uuid":"672487930","full_name":"Panquesito7/setup-jule","owner":"Panquesito7","description":"Setup a JuleC development environment in your project.","archived":false,"fork":false,"pushed_at":"2023-09-14T16:23:09.000Z","size":30,"stargazers_count":4,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-16T00:02:30.858Z","etag":null,"topics":["action-composite","actions","c","clang","composite","composite-action","cpp","hacktoberfest","jule","julec","julelang","programming"],"latest_commit_sha":null,"homepage":"","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/Panquesito7.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-30T08:57:05.000Z","updated_at":"2025-03-10T22:57:58.000Z","dependencies_parsed_at":"2024-08-03T10:04:24.300Z","dependency_job_id":null,"html_url":"https://github.com/Panquesito7/setup-jule","commit_stats":null,"previous_names":["panquesito7/setup-jule"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Panquesito7%2Fsetup-jule","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Panquesito7%2Fsetup-jule/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Panquesito7%2Fsetup-jule/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Panquesito7%2Fsetup-jule/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Panquesito7","download_url":"https://codeload.github.com/Panquesito7/setup-jule/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253341969,"owners_count":21893547,"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":["action-composite","actions","c","clang","composite","composite-action","cpp","hacktoberfest","jule","julec","julelang","programming"],"created_at":"2024-04-08T00:09:09.307Z","updated_at":"2025-05-09T23:32:34.759Z","avatar_url":"https://github.com/Panquesito7.png","language":null,"readme":"# Setup Jule \u003ca href=\"https://jule.dev\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/julelang/resources/master/jule_icon.svg\" height=\"60px\"\u003e\u003c/a\u003e\n\n[![Action validation](https://github.com/Panquesito7/setup-jule/actions/workflows/test.yml/badge.svg)](https://github.com/Panquesito7/setup-jule/actions/workflows/test.yml)\n\nEasily setup a [JuleC](https://jule.dev) development environment in your project with GitHub Actions.\\\nVery useful when your project is built in the Jule programming language.\n\n## Usage\n\nHere's a basic workflow usage that you can use.\\\nFor full information, check out [`action.yml`](https://github.com/Panquesito7/setup-jule/blob/main/action.yml).\n\n```yml\nname: Setup Jule\non: [push]\njobs:\n  jule:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - uses: Panquesito7/setup-jule@v1.1.3\n        with:\n          version: latest         # https://github.com/julelang/jule/releases for all JuleC versions.\n          directory: .            # The directory where JuleC will be installed.\n          architecture: amd64     # Architecture that will be used. Valid options are `amd64`, `arm64`, and `i386` (optional).\n          add-to-path: false      # Whether to add JuleC to the PATH or not (optional).\n          extra-command: version  # Extra command that will be run after compiling JuleC (optional; see below for more information).\n```\n\n### Version syntax\n\nRelease syntax is taken from the official [JuleC releases](https://github.com/julelang/jule/releases).\n\n- `latest` and `current` for the latest release.\n- `dev` for the latest commit.\n- `beta-0.x.x` (there are no stable releases for now).\n\n### Architecture\n\nThe architecture that will be used to install JuleC.\\\n`arm64`, `amd64`, and `i386` (Linux only) can be used. `amd64` is the recommended architecture.\n\n### Extra command\n\nAn extra command will be run after compiling and installing JuleC.\\\nYou can see the full list of commands in the [official manual](https://manual.jule.dev/compiler/basic-commands.html).\n\n\u003e **Note**\n\u003e\n\u003e The manual is updated and based on the latest Jule commits.\\\n\u003e However, the IR file might not be up-to-date, meaning that new commands won't work.\n\n```yml\n- uses: actions/checkout@v4\n- uses: Panquesito7/setup-jule@v1.1.3\n  with:\n    version: beta-0.0.2\n    directory: ./libs\n    architecture: amd64\n    add-to-path: true\n    extra-command: version\n```\n\n## Supported operating systems\n\nCurrently, macOS and Linux are supported, just like JuleC itself.\\\nWindows support will be added once JuleC supports Windows.\n\nFor more information: \u003chttps://github.com/julelang/jule/issues/34\u003e\n\n## License\n\nSee the [`LICENSE.md`](https://github.com/Panquesito7/setup-jule/blob/main/LICENSE.md) file for more information.\n","funding_links":[],"categories":["CI/CD"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPanquesito7%2Fsetup-jule","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FPanquesito7%2Fsetup-jule","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPanquesito7%2Fsetup-jule/lists"}